mirror of
https://github.com/boostorg/python.git
synced 2026-02-02 09:02:15 +00:00
This commit was manufactured by cvs2svn to create branch 'RC_1_30_0'.
[SVN r17988]
This commit is contained in:
16
pyste/example/unions.h
Normal file
16
pyste/example/unions.h
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace unions {
|
||||
|
||||
class UnionTest
|
||||
{
|
||||
public:
|
||||
union // unions are not supported for now
|
||||
{
|
||||
int i;
|
||||
short s1;
|
||||
short s2;
|
||||
} mBad;
|
||||
|
||||
int mGood;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user