Build failure seen on some 64Bit archs. Was seen on PowerPC64 also.
See Debian BTS #526012

Signed-off-by: Ritesh Raj Sarraf <r...@researchut.com>
---
 src/boost/integer/endian.hpp |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/boost/integer/endian.hpp b/src/boost/integer/endian.hpp
index 29c8f99..c9b5b09 100755
--- a/src/boost/integer/endian.hpp
+++ b/src/boost/integer/endian.hpp
@@ -211,7 +211,7 @@ namespace boost
         endian() {}
     #ifdef BOOST_BIG_ENDIAN
         endian(T val) : integer(val) { }
-        endian & operator=(T val) { integer = val); return *this; }
+        endian & operator=(T val) { integer = val; return *this; }
         operator T() const { return integer; }
     #else
         endian(T val)             { detail::store_big_endian<T, 
sizeof(T)>(&integer, val); }
-- 
1.6.2.4




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to