diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index e68f942cb1da..c1c905207fcc 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2015-07-20 Jason Merrill + + * include/bits/c++config: Fix abi_tag in special modes. + 2015-07-19 Jonathan Wakely * doc/xml/manual/status_cxx2017.xml: Fix URL for N4279. diff --git a/libstdc++-v3/include/bits/c++config b/libstdc++-v3/include/bits/c++config index 34acca36f38c..d450f61bc8ca 100644 --- a/libstdc++-v3/include/bits/c++config +++ b/libstdc++-v3/include/bits/c++config @@ -296,7 +296,7 @@ namespace std # endif # if _GLIBCXX_USE_CXX11_ABI - inline namespace __cxx11 __attribute__((__abi_tag__)) { } + inline namespace __cxx11 __attribute__((__abi_tag__ ("cxx11"))) { } # endif }