tempbuf.h: get_temporary_buffer and return_temporary_buffer are in namespace std...

2002-02-22  Philipp Thomas  <pthomas@suse.de>

        * include/backward/tempbuf.h: get_temporary_buffer and
        return_temporary_buffer are in namespace std, not in __gnu_cxx.

From-SVN: r49973
This commit is contained in:
Philipp Thomas 2002-02-22 21:23:09 +00:00 committed by Paolo Carlini
parent b76b08ef94
commit 0bc1e80dca
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-02-22 Philipp Thomas <pthomas@suse.de>
* include/backward/tempbuf.h: get_temporary_buffer and
return_temporary_buffer are in namespace std, not in __gnu_cxx.
2002-02-21 Benjamin Kosnik <bkoz@redhat.com>
* configure.in (target_alias): Default to yes.

View File

@ -67,8 +67,8 @@
#include <bits/stl_uninitialized.h>
#include <ext/memory>
using __gnu_cxx::get_temporary_buffer;
using __gnu_cxx::return_temporary_buffer;
using std::get_temporary_buffer;
using std::return_temporary_buffer;
using __gnu_cxx::temporary_buffer;
#endif /* _CPP_BACKWARD_TEMPBUF_H */