diff options
author | Philipp Thomas <pthomas@suse.de> | 2002-02-22 21:23:09 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2002-02-22 21:23:09 +0000 |
commit | 0bc1e80dcaae4da9d195209192cad1b05fcabc51 (patch) | |
tree | b59044163951399ef52d392e8fcafabe6fc20e72 /libstdc++-v3/include/backward/tempbuf.h | |
parent | b76b08ef94598e7fe6ef2ec3550f03c7bb1e1e7f (diff) | |
download | gcc-0bc1e80dcaae4da9d195209192cad1b05fcabc51.zip gcc-0bc1e80dcaae4da9d195209192cad1b05fcabc51.tar.gz gcc-0bc1e80dcaae4da9d195209192cad1b05fcabc51.tar.bz2 |
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
Diffstat (limited to 'libstdc++-v3/include/backward/tempbuf.h')
-rw-r--r-- | libstdc++-v3/include/backward/tempbuf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/include/backward/tempbuf.h b/libstdc++-v3/include/backward/tempbuf.h index 617cbc3..f47e707 100644 --- a/libstdc++-v3/include/backward/tempbuf.h +++ b/libstdc++-v3/include/backward/tempbuf.h @@ -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 */ |