$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r64102 - branches/release/boost/serialization
From: ramey_at_[hidden]
Date: 2010-07-17 12:04:31
Author: ramey
Date: 2010-07-17 12:04:30 EDT (Sat, 17 Jul 2010)
New Revision: 64102
URL: http://svn.boost.org/trac/boost/changeset/64102
Log:
Merge corrections to text based archives for version_type and item_version_type
Properties modified: 
   branches/release/boost/serialization/   (props changed)
Text files modified: 
   branches/release/boost/serialization/item_version_type.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: branches/release/boost/serialization/item_version_type.hpp
==============================================================================
--- branches/release/boost/serialization/item_version_type.hpp	(original)
+++ branches/release/boost/serialization/item_version_type.hpp	2010-07-17 12:04:30 EDT (Sat, 17 Jul 2010)
@@ -21,7 +21,7 @@
 
 class item_version_type {
 private:
-    typedef uint_least8_t base_type;
+    typedef unsigned int base_type;
     base_type t;
     item_version_type(): t(0) {};
 public:
@@ -39,7 +39,7 @@
     operator const base_type () const {
         return t;
     }                
-    // used for text output
+    // used for text input
     operator base_type & () {
         return t;
     }