Fixed a mistake in the declaration for class BFoo in the "pointer to new

data structure example"; int32 fQux should have been included (otherwise,
the class size would have be reduced by 4 bytes!)


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2550 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
ejakowatz 2003-01-25 20:59:47 +00:00
parent 6d936c5f11
commit 7dfa005716

View File

@ -134,6 +134,7 @@ should be binary compatible in no time!
private:
int32 fBar;
char fZig;
int32 fQux;
_BFooData_* fNewData;
int32 fUnused[1];
};