diff options
author | Paolo Carlini <pcarlini@unitus.it> | 2003-06-19 17:39:33 +0200 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2003-06-19 15:39:33 +0000 |
commit | 50af15ec616940c40dfbefe865c89853ee09622e (patch) | |
tree | 07de275e658589827dddcc2256ce6963745fb5fd | |
parent | 2e5d98ced6c38eb3dd1790b263af057fac64314d (diff) | |
download | gcc-50af15ec616940c40dfbefe865c89853ee09622e.zip gcc-50af15ec616940c40dfbefe865c89853ee09622e.tar.gz gcc-50af15ec616940c40dfbefe865c89853ee09622e.tar.bz2 |
std_sstream.h (_M_sync): Make non virtual.
2003-06-19 Paolo Carlini <pcarlini@unitus.it>
* include/std/std_sstream.h (_M_sync): Make non virtual.
From-SVN: r68200
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/include/std/std_sstream.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 2c7df33..30a7c1c 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2003-06-19 Paolo Carlini <pcarlini@unitus.it> + + * include/std/std_sstream.h (_M_sync): Make non virtual. + 2003-06-18 Benjamin Kosnik <bkoz@redhat.com> * testsuite/testsuite_performance.h (time_counter): New. diff --git a/libstdc++-v3/include/std/std_sstream.h b/libstdc++-v3/include/std/std_sstream.h index a720d35..7f3fc64 100644 --- a/libstdc++-v3/include/std/std_sstream.h +++ b/libstdc++-v3/include/std/std_sstream.h @@ -245,7 +245,7 @@ namespace std * @doctodo * @endif */ - virtual void + void _M_sync(char_type* __base, __size_type __i, __size_type __o) { const bool __testin = this->_M_mode & ios_base::in; |