diff options
author | theraven <theraven@FreeBSD.org> | 2012-06-11 15:40:57 +0000 |
---|---|---|
committer | theraven <theraven@FreeBSD.org> | 2012-06-11 15:40:57 +0000 |
commit | b1b87d698b0d48ebcdc36b4df376881001fe2df5 (patch) | |
tree | 2f7747d3ab3adb43792f062a3dbaa748640a64a7 /lib | |
parent | 1b6b7176ba276ada324f9e9140d3448f66c8738f (diff) | |
download | FreeBSD-src-b1b87d698b0d48ebcdc36b4df376881001fe2df5.zip FreeBSD-src-b1b87d698b0d48ebcdc36b4df376881001fe2df5.tar.gz |
Clean up some symbol versions for libsupc++ / libcxxrt.
MFC after: 1 week
Reviewed by: kan
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcxxrt/Version.map | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/lib/libcxxrt/Version.map b/lib/libcxxrt/Version.map index b5be60e..ca990a0 100644 --- a/lib/libcxxrt/Version.map +++ b/lib/libcxxrt/Version.map @@ -306,11 +306,6 @@ CXXRT_1.0 { "std::type_info::__is_pointer_p() const"; - "operator delete[](void*)"; - "operator delete(void*)"; - "operator new[](unsigned long)"; - "operator new(unsigned long)"; - "operator new(unsigned long, std::nothrow_t const&)"; }; __cxa_allocate_dependent_exception; @@ -321,3 +316,16 @@ CXXRT_1.0 { __cxa_rethrow_primary_exception; } CXXABI_1.3.1; + +GLIBCXX_3.4 { + extern "C++" { + "operator delete[](void*)"; + "operator delete(void*)"; + "operator new[](unsigned int)"; + "operator new(unsigned int)"; + "operator new(unsigned int, std::nothrow_t const&)"; + "operator new[](unsigned long)"; + "operator new(unsigned long)"; + "operator new(unsigned long, std::nothrow_t const&)"; + }; +}; |