diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-12-31 17:48:34 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-01-01 11:45:54 (GMT) |
commit | f07d96ccf4c0b09b544efadaac47cd79f9298b89 (patch) | |
tree | bdaa547b7315fada62db767874f8b452c80f9316 /Source/cmStandardIncludes.h | |
parent | 5a8b9437c24e1548ad15ed816e0f252e912812e1 (diff) | |
download | CMake-f07d96ccf4c0b09b544efadaac47cd79f9298b89.zip CMake-f07d96ccf4c0b09b544efadaac47cd79f9298b89.tar.gz CMake-f07d96ccf4c0b09b544efadaac47cd79f9298b89.tar.bz2 |
Remove workaround for GCC < 3 ios_base absence.
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r-- | Source/cmStandardIncludes.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h index c6788d3..e4f5760 100644 --- a/Source/cmStandardIncludes.h +++ b/Source/cmStandardIncludes.h @@ -146,11 +146,6 @@ extern int putenv (char *__string) __THROW; #define for if(false) {} else for #endif -// Provide std::ios_base on ancient GCC 2.9x -#if defined(__GNUC__) && __GNUC__ < 3 -namespace std { typedef ios ios_base; } -#endif - // check for the 720 compiler on the SGI // which has some strange properties that I don't think are worth // checking for in a general way in configure |