Remove workaround for GCC < 3 ios_base absence.

This commit is contained in:
Stephen Kelly 2014-12-31 18:48:34 +01:00
parent 5a8b9437c2
commit f07d96ccf4
1 changed files with 0 additions and 5 deletions

View File

@ -146,11 +146,6 @@ extern int putenv (char *__string) __THROW;
#define for if(false) {} else for #define for if(false) {} else for
#endif #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 // check for the 720 compiler on the SGI
// which has some strange properties that I don't think are worth // which has some strange properties that I don't think are worth
// checking for in a general way in configure // checking for in a general way in configure