Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r64910 - trunk/boost/archive
From: ramey_at_[hidden]
Date: 2010-08-19 01:36:11


Author: ramey
Date: 2010-08-19 01:36:09 EDT (Thu, 19 Aug 2010)
New Revision: 64910
URL: http://svn.boost.org/trac/boost/changeset/64910

Log:
removed warning causing superfluous const
Text files modified:
   trunk/boost/archive/basic_archive.hpp | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: trunk/boost/archive/basic_archive.hpp
==============================================================================
--- trunk/boost/archive/basic_archive.hpp (original)
+++ trunk/boost/archive/basic_archive.hpp 2010-08-19 01:36:09 EDT (Thu, 19 Aug 2010)
@@ -54,7 +54,7 @@
         return *this;
     }
     // used for text output
- operator const base_type () const {
+ operator base_type () const {
         return t;
     }
     // used for text input
@@ -90,7 +90,7 @@
         return *this;
     }
     // used for text output
- operator const base_type () const {
+ operator base_type () const {
         return t;
     }
     // used for text intput
@@ -127,7 +127,7 @@
     }
 
     // used for text output
- operator const int () const {
+ operator int () const {
         return t;
     }
     // used for text input
@@ -161,7 +161,7 @@
         return *this;
     }
     // used for text output
- operator const uint_least32_t () const {
+ operator uint_least32_t () const {
         return t;
     }
     // used for text input


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk