Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r69014 - sandbox/endian_ext/boost/integer/endian
From: vicente.botet_at_[hidden]
Date: 2011-02-18 18:50:16


Author: viboes
Date: 2011-02-18 18:50:13 EST (Fri, 18 Feb 2011)
New Revision: 69014
URL: http://svn.boost.org/trac/boost/changeset/69014

Log:
Integer.Endian
Text files modified:
   sandbox/endian_ext/boost/integer/endian/endian_pack.hpp | 12 ++++++------
   1 files changed, 6 insertions(+), 6 deletions(-)

Modified: sandbox/endian_ext/boost/integer/endian/endian_pack.hpp
==============================================================================
--- sandbox/endian_ext/boost/integer/endian/endian_pack.hpp (original)
+++ sandbox/endian_ext/boost/integer/endian/endian_pack.hpp 2011-02-18 18:50:13 EST (Fri, 18 Feb 2011)
@@ -239,7 +239,7 @@
         }
         const char* data() const { return m_value; }
     private:
- char m_value[n_bits/8];
+ char m_value[n_bits/8];
     };
 
     // unaligned little endian specialization
@@ -274,7 +274,7 @@
         }
         const char* data() const { return m_value; }
       private:
- char m_value[n_bits/8];
+ char m_value[n_bits/8];
     };
 
 
@@ -309,7 +309,7 @@
         //~ const char* data() const { return reinterpret_cast<const char *>(&m_value); }
         const char* data() const { return m_value; }
       private:
- //~ T m_value;
+ //~ T m_value;
       char m_value[sizeof(value_type)];
     };
 
@@ -332,7 +332,7 @@
         operator T() const { return m_value; }
         const char* data() const { return reinterpret_cast<const char *>(&m_value); }
       private:
- T m_value;
+ T m_value;
     };
 #else
     // aligned big endian specialization
@@ -363,7 +363,7 @@
 # endif
         const char* data() const { return reinterpret_cast<const char *>(&m_value); }
       private:
- T m_value;
+ T m_value;
     };
 
     // aligned little endian specialization
@@ -394,7 +394,7 @@
     #endif
         const char* data() const { return reinterpret_cast<const char *>(&m_value); }
       private:
- T m_value;
+ T m_value;
     };
 #endif
 


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