Fixed wxSTD for old gcc versions.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33667 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
f57d5c8919
commit
76e58831fe
@ -310,12 +310,13 @@
|
||||
|
||||
/*
|
||||
old C++ headers (like <iostream.h>) declare classes in the global namespace
|
||||
while the new, standard ones (like <iostream>) do it in std:: namespace
|
||||
while the new, standard ones (like <iostream>) do it in std:: namespace,
|
||||
unless it's an old gcc version.
|
||||
|
||||
using this macro allows constuctions like "wxSTD iostream" to work in
|
||||
either case
|
||||
*/
|
||||
#if !wxUSE_IOSTREAMH
|
||||
#if !wxUSE_IOSTREAMH && (!defined(__GNUC__) || ( __GNUC__ > 2 ) || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95))
|
||||
# define wxSTD std::
|
||||
#else
|
||||
# define wxSTD
|
||||
|
Loading…
Reference in New Issue
Block a user