diff --git a/libstdc++/ChangeLog b/libstdc++/ChangeLog index 39890052f5f5..8cdbc08d9404 100644 --- a/libstdc++/ChangeLog +++ b/libstdc++/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 11 15:03:20 1997 Jason Merrill + + * std/bastring.h (class basic_string): Add global scope to + use of reverse_iterator. + Tue Sep 9 19:47:07 1997 Jason Merrill * std/bastring.h: Adjust use of reverse_iterator template. diff --git a/libstdc++/std/bastring.h b/libstdc++/std/bastring.h index 5ca371ed6a62..9070a2e857d9 100644 --- a/libstdc++/std/bastring.h +++ b/libstdc++/std/bastring.h @@ -110,8 +110,8 @@ public: typedef const charT* const_pointer; typedef pointer iterator; typedef const_pointer const_iterator; - typedef reverse_iterator reverse_iterator; - typedef reverse_iterator const_reverse_iterator; + typedef ::reverse_iterator reverse_iterator; + typedef ::reverse_iterator const_reverse_iterator; static const size_type npos = static_cast(-1); private: