Added some pragmas, to address problem mentioned

in bug report:

[ 670355 ] Borland C++ 5.5 with wxW 2.4.0


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20832 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2003-06-01 19:00:48 +00:00
parent 000c548490
commit a031ea171a
9 changed files with 80 additions and 0 deletions

View File

@@ -28,6 +28,10 @@ struct WXDLLEXPORT _wxHashTable_NodeBase
_wxHashTable_NodeBase* m_nxt;
};
#ifdef __BORLANDC__
# pragma option -w-inl
#endif
// private
class WXDLLEXPORT _wxHashTableBase2
{
@@ -70,6 +74,10 @@ protected:
}
};
#ifdef __BORLANDC__
# pragma option -w.inl
#endif
#define _WX_DECLARE_HASHTABLE( VALUE_T, KEY_T, HASH_T, KEY_EX_T, KEY_EQ_T, CLASSNAME, CLASSEXP, SHOULD_GROW, SHOULD_SHRINK ) \
CLASSEXP CLASSNAME : protected _wxHashTableBase2 \
{ \