From 34867639eaec5969ed426dae351f875f6517522a Mon Sep 17 00:00:00 2001 From: bemandawes Date: Tue, 24 May 2011 11:25:19 +0000 Subject: [PATCH] fix big endian machine typo git-svn-id: http://svn.boost.org/svn/boost/sandbox/endian@72129 b8fc166d-592f-0410-95f2-cb63ce0dd405 --- boost/endian/integers.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boost/endian/integers.hpp b/boost/endian/integers.hpp index 084b821..91a389f 100644 --- a/boost/endian/integers.hpp +++ b/boost/endian/integers.hpp @@ -285,7 +285,7 @@ namespace boost # 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(&m_value, val); return *this; }