This commit is contained in:
Mike Hommey 2025-04-03 16:04:11 -07:00 committed by GitHub
commit 44d046e8b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View file

@ -31,7 +31,7 @@
// Workaround for a libstdc++ bug before libstdc++4.6 (2011).
// https://bugs.llvm.org/show_bug.cgi?id=13364
#if defined(__GLIBCXX__)
#if defined(__GLIBCXX__) && !defined(_GLIBCXX_RELEASE)
namespace std { class type_info; }
#endif
#include <string>

View file

@ -24,7 +24,7 @@
#include <exception>
using std::exception;
#endif
#if defined(__GLIBCXX__)
#if defined(__GLIBCXX__) && !defined(_GLIBCXX_RELEASE)
namespace std { class type_info; } // WORKAROUND: http://llvm.org/bugs/show_bug.cgi?id=13364
#endif
#include <typeinfo> // for 'typeid' to work

View file

@ -34,7 +34,7 @@
* C++ I/O stream API.
*/
#if defined(__GLIBCXX__)
#if defined(__GLIBCXX__) && !defined(_GLIBCXX_RELEASE)
namespace std { class type_info; } // WORKAROUND: http://llvm.org/bugs/show_bug.cgi?id=13364
#endif

View file

@ -31,7 +31,7 @@
#include <string.h>
#include <stdio.h>
#if defined(__GLIBCXX__)
#if defined(__GLIBCXX__) && !defined(_GLIBCXX_RELEASE)
namespace std { class type_info; } // WORKAROUND: http://llvm.org/bugs/show_bug.cgi?id=13364
#endif