Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion icu4c/source/common/unicode/std_string.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion icu4c/source/common/utypeinfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion icu4c/source/io/unicode/ustream.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion icu4c/source/test/intltest/dcfmtest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down