Is it possible to determine if the standard C ++ library supports C ++ 11 using the preprocessor directive?
I am currently working on a project that uses a dialect of C ++ 11, but with a standard C ++ library without C ++ 11 support (I need this to be able to link to non-C ++ 11 libraries).
I know that I can check C ++ 11 support with #if __cplusplus >= 201103L , but in my case it will evaluate to true. I need to know about the support of the standard C ++ library for C ++ 11.
source share