From 7dfa005716c075a4f756b64a636ba688a99fa1fc Mon Sep 17 00:00:00 2001 From: ejakowatz Date: Sat, 25 Jan 2003 20:59:47 +0000 Subject: [PATCH] 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 --- docs/develop/ikteam/BinCompat.html | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/develop/ikteam/BinCompat.html b/docs/develop/ikteam/BinCompat.html index 51524fbb3e..5464bf9eac 100644 --- a/docs/develop/ikteam/BinCompat.html +++ b/docs/develop/ikteam/BinCompat.html @@ -134,6 +134,7 @@ should be binary compatible in no time! private: int32 fBar; char fZig; + int32 fQux; _BFooData_* fNewData; int32 fUnused[1]; };