aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/debug/string
diff options
context:
space:
mode:
authorFrançois Dumont <francois.cppdevs@free.fr>2011-06-29 22:11:50 +0200
committerFrançois Dumont <fdumont@gcc.gnu.org>2011-06-29 20:11:50 +0000
commit4c2d93dbfaae5ec5a86d903cc1383c2558c0156e (patch)
treef5936d88794627a9de34beca288056058a9a9241 /libstdc++-v3/include/debug/string
parent5c0d88e64ad5180036145f1de53783fae391bcc6 (diff)
downloadgcc-4c2d93dbfaae5ec5a86d903cc1383c2558c0156e.zip
gcc-4c2d93dbfaae5ec5a86d903cc1383c2558c0156e.tar.gz
gcc-4c2d93dbfaae5ec5a86d903cc1383c2558c0156e.tar.bz2
set.h, [...]: Remove base class default constructor calls.
2011-06-29 François Dumont <francois.cppdevs@free.fr> * include/debug/set.h, unordered_map, multiset.h, forward_list, unordered_set, vector, deque, string, list, multimap.h: Remove base class default constructor calls. * include/debug/map.h: Likewise and cleanup several redefinition of base iterator typedef. From-SVN: r175665
Diffstat (limited to 'libstdc++-v3/include/debug/string')
-rw-r--r--libstdc++-v3/include/debug/string4
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/include/debug/string b/libstdc++-v3/include/debug/string
index 9e0ad61..7856b24 100644
--- a/libstdc++-v3/include/debug/string
+++ b/libstdc++-v3/include/debug/string
@@ -75,12 +75,12 @@ namespace __gnu_debug
{ }
// Provides conversion from a release-mode string to a debug-mode string
- basic_string(const _Base& __base) : _Base(__base), _Safe_base() { }
+ basic_string(const _Base& __base) : _Base(__base) { }
// _GLIBCXX_RESOLVE_LIB_DEFECTS
// 42. string ctors specify wrong default allocator
basic_string(const basic_string& __str)
- : _Base(__str, 0, _Base::npos, __str.get_allocator()), _Safe_base()
+ : _Base(__str, 0, _Base::npos, __str.get_allocator())
{ }
// _GLIBCXX_RESOLVE_LIB_DEFECTS