$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r72129 - sandbox/endian/boost/endian
From: bdawes_at_[hidden]
Date: 2011-05-24 07:25:19
Author: bemandawes
Date: 2011-05-24 07:25:19 EDT (Tue, 24 May 2011)
New Revision: 72129
URL: http://svn.boost.org/trac/boost/changeset/72129
Log:
fix big endian machine typo
Text files modified: 
   sandbox/endian/boost/endian/integers.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/endian/boost/endian/integers.hpp
==============================================================================
--- sandbox/endian/boost/endian/integers.hpp	(original)
+++ sandbox/endian/boost/endian/integers.hpp	2011-05-24 07:25:19 EDT (Tue, 24 May 2011)
@@ -285,7 +285,7 @@
 #     endif
 #   endif
 #   ifdef BOOST_BIG_ENDIAN  
-        endian & operator=(T val) { m_value = val); return *this; }
+        endian & operator=(T val) { m_value = val; return *this; }
         operator T() const        { return m_value; }
 #   else  
         endian & operator=(T val) { detail::store_big_endian<T, sizeof(T)>(&m_value, val); return *this; }