Fix PCH problems with some versions of CodeWarrior.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18685 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon 2003-01-11 20:55:27 +00:00
parent a29ee70613
commit 1c1572053a

View File

@ -332,7 +332,7 @@ protected: \
\ \
CopyHashTable( (_wxHashTable_NodeBase**)srcTable, srcBuckets, \ CopyHashTable( (_wxHashTable_NodeBase**)srcTable, srcBuckets, \
this, (_wxHashTable_NodeBase**)m_table, \ this, (_wxHashTable_NodeBase**)m_table, \
(BucketFromNode)&GetBucketForNode,\ (BucketFromNode)GetBucketForNode,\
(ProcessNode)&DummyProcessNode ); \ (ProcessNode)&DummyProcessNode ); \
free(srcTable); \ free(srcTable); \
} \ } \
@ -344,8 +344,8 @@ protected: \
CopyHashTable( (_wxHashTable_NodeBase**)ht.m_table, ht.m_tableBuckets,\ CopyHashTable( (_wxHashTable_NodeBase**)ht.m_table, ht.m_tableBuckets,\
(_wxHashTableBase2*)this, \ (_wxHashTableBase2*)this, \
(_wxHashTable_NodeBase**)m_table, \ (_wxHashTable_NodeBase**)m_table, \
(BucketFromNode)&GetBucketForNode, \ (BucketFromNode)GetBucketForNode, \
(ProcessNode)&CopyNode ); \ (ProcessNode)CopyNode ); \
} \ } \
}; };