Various changes for Salford C++, and commited fileconf.h/fileconf.cpp changes
to take out nested classes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -46,6 +46,15 @@
|
||||
# pragma warning(disable:4100) // unreferenced formal parameter
|
||||
#endif
|
||||
|
||||
// suppress some Salford C++ warnings
|
||||
#ifdef __SALFORDC__
|
||||
# pragma suppress 353 // Possible nested comments
|
||||
# pragma suppress 593 // Define not used
|
||||
# pragma suppress 61 // enum has no name (doesn't suppress!)
|
||||
# pragma suppress 106 // unnamed, unused parameter
|
||||
# pragma suppress 571 // Virtual function hiding
|
||||
#endif
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////////
|
||||
// Currently Only MS-Windows/NT, XView and Motif are supported
|
||||
//
|
||||
@@ -109,6 +118,8 @@
|
||||
#endif
|
||||
#elif defined(__SC__)
|
||||
typedef unsigned int bool;
|
||||
#elif defined(__SALFORDC__)
|
||||
typedef unsigned int bool;
|
||||
#elif defined(_MSC_VER) && (_MSC_VER <= 1000)
|
||||
typedef unsigned int bool;
|
||||
#elif defined(_MSC_VER) && (_MSC_VER == 1020)
|
||||
|
Reference in New Issue
Block a user