excluded gcc>3 from check
This commit is contained in:
parent
cde5b5d22b
commit
a597ec6f8a
1 changed files with 3 additions and 1 deletions
|
|
@ -31,12 +31,14 @@
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
|
#if __GNUC__ < 3
|
||||||
// check for stdlibc++v3 which does have ios_base
|
// check for stdlibc++v3 which does have ios_base
|
||||||
#ifndef _CPP_BITS_IOSBASE_H
|
#ifndef _CPP_BITS_IOSBASE_H
|
||||||
typedef ios ios_base; // not currently defined in GCC
|
typedef ios ios_base; // not currently defined in GCC
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(_MSC_VER) && (_MSC_VER < 1300)
|
#if defined(_MSC_VER) && (_MSC_VER < 1300)
|
||||||
/*
|
/*
|
||||||
|
|
|
||||||
Reference in a new issue