Commit 565aed1a by Jonathan Wakely Committed by Jonathan Wakely

* config/abi/pre/gnu.ver: Fix ios_base::failure exports.

From-SVN: r218189
parent 73e42eef
2014-11-30 Jonathan Wakely <jwakely@redhat.com>
* config/abi/pre/gnu.ver: Fix ios_base::failure exports.
2014-11-29 Jonathan Wakely <jwakely@redhat.com> 2014-11-29 Jonathan Wakely <jwakely@redhat.com>
* include/bits/locale_facets/nonio.h (__timepunct): Remove unused * include/bits/locale_facets/nonio.h (__timepunct): Remove unused
......
...@@ -85,7 +85,11 @@ GLIBCXX_3.4 { ...@@ -85,7 +85,11 @@ GLIBCXX_3.4 {
std::invalid_argument::i*; std::invalid_argument::i*;
# std::invalid_argument::~i*; # std::invalid_argument::~i*;
# std::ios_base::[A-Ha-z]*; # std::ios_base::[A-Ha-z]*;
std::ios_base::[A-Ha-f]*; std::ios_base::[A-Ha-e]*;
std::ios_base::failbit;
# std::ios_base::failure*;
std::ios_base::fixed;
std::ios_base::floatfield;
std::ios_base::goodbit; std::ios_base::goodbit;
std::ios_base::[h-z]*; std::ios_base::[h-z]*;
std::ios_base::_M_grow_words*; std::ios_base::_M_grow_words*;
...@@ -499,6 +503,11 @@ GLIBCXX_3.4 { ...@@ -499,6 +503,11 @@ GLIBCXX_3.4 {
_ZNSt8ios_baseD*; _ZNSt8ios_baseD*;
_ZNSt8ios_base4InitD*; _ZNSt8ios_base4InitD*;
# std::ios_base::failure constructors, destructors, virtual function
_ZNSt8ios_base7failureC*;
_ZNSt8ios_base7failureD*;
_ZNKSt8ios_base7failure4whatEv;
# bool std::has_facet # bool std::has_facet
_ZSt9has_facetIS*; _ZSt9has_facetIS*;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment