From: Vadim Zeitlin Date: Sun, 16 Jan 2005 15:46:22 +0000 (+0000) Subject: don't force wxUSE_EXTENDED_RTTI to eb 1 for Borland compiler (why?) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/28999ba6310e9c110a963223fd38e1f340e60568 don't force wxUSE_EXTENDED_RTTI to eb 1 for Borland compiler (why?) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31396 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/mac/setup0.h b/include/wx/mac/setup0.h index d626ded870..a91a4067f6 100644 --- a/include/wx/mac/setup0.h +++ b/include/wx/mac/setup0.h @@ -194,14 +194,9 @@ // // Default is 0 // -// Recommended setting: 0 +// Recommended setting: 0 (this is still work in progress...) #define wxUSE_EXTENDED_RTTI 0 -#if defined(__BORLANDC__) -#undef wxUSE_EXTENDED_RTTI -#define wxUSE_EXTENDED_RTTI 1 -#endif - // Set wxUSE_STL to 1 to derive wxList(Foo) and wxArray(Foo) from // std::list and std::vector, with a compatibility interface, // and for wxHashMap to be implemented with templates. diff --git a/include/wx/msw/setup0.h b/include/wx/msw/setup0.h index 80de9f6ad0..b44463397e 100644 --- a/include/wx/msw/setup0.h +++ b/include/wx/msw/setup0.h @@ -193,14 +193,9 @@ // // Default is 0 // -// Recommended setting: 0 +// Recommended setting: 0 (this is still work in progress...) #define wxUSE_EXTENDED_RTTI 0 -#if defined(__BORLANDC__) -#undef wxUSE_EXTENDED_RTTI -#define wxUSE_EXTENDED_RTTI 1 -#endif - // Set wxUSE_STL to 1 to derive wxList(Foo) and wxArray(Foo) from // std::list and std::vector, with a compatibility interface, // and for wxHashMap to be implemented with templates. diff --git a/include/wx/setup_inc.h b/include/wx/setup_inc.h index aae2b8bad6..9ce5ddca88 100644 --- a/include/wx/setup_inc.h +++ b/include/wx/setup_inc.h @@ -178,14 +178,9 @@ // // Default is 0 // -// Recommended setting: 0 +// Recommended setting: 0 (this is still work in progress...) #define wxUSE_EXTENDED_RTTI 0 -#if defined(__BORLANDC__) -#undef wxUSE_EXTENDED_RTTI -#define wxUSE_EXTENDED_RTTI 1 -#endif - // Set wxUSE_STL to 1 to derive wxList(Foo) and wxArray(Foo) from // std::list and std::vector, with a compatibility interface, // and for wxHashMap to be implemented with templates.