ios_base::failure workaround: Ensure c++config.h is included

This commit is contained in:
Martchus 2017-06-01 11:29:33 +02:00
parent be4901ce2c
commit 2625f82e49
1 changed files with 5 additions and 4 deletions

View File

@ -1,12 +1,13 @@
// include libstd++ specific header <bits/c++config.h> containing _GLIBCXX_RELEASE
// without including ios already (must be included after setting _GLIBCXX_USE_CXX11_ABI)
#include <cctype>
// ensure the old ABI is used under libstd++ < 7 and the new ABI under libstd++ >= 7
#ifdef _GLIBCXX_RELEASE
#include <bits/c++config.h>
#if _GLIBCXX_RELEASE >= 7
#if defined(_GLIBCXX_RELEASE) && _GLIBCXX_RELEASE >= 7
#define _GLIBCXX_USE_CXX11_ABI 1
#else
#define _GLIBCXX_USE_CXX11_ABI 0
#endif
#endif
#include "./catchiofailure.h"