Условие для GCC < 4.8

This commit is contained in:
Andrei Astafev 2019-10-19 07:10:26 +03:00
parent afcf3b2b6c
commit 931606b571
2 changed files with 3 additions and 5 deletions

View File

@ -1,6 +1,4 @@
#if !defined( WHEREAMIPP_H ) #include <myx/filesystem/whereami.hpp>
#include <whereami.hpp>
#endif
namespace whereami { namespace whereami {

View File

@ -67,8 +67,8 @@ typedef WHEREAMI_STRING_T whereami_string_t;
#endif #endif
#if defined( __GNUC__ ) #if defined( __GNUC__ )
#if !( ( __GNUC__ * 100 + __GNUC_MINOR__ ) < 408 ) #if ( ( __GNUC__ * 100 + __GNUC_MINOR__ ) < 408 )
#undef WHEREAMI_CXX11 #undef WHEREAMI_CXX11
#endif #endif
#endif #endif