From: Markus Koschany <apo@debian.org>
Date: Sun, 21 Aug 2016 23:33:55 +0200
Subject: boost1.61

libclaw FTBFS with Boost 1.61.
error: invalid initialization of non-const reference of type 'double&' from an
rvalue of type 'double'

See also
https://stackoverflow.com/questions/37494170/why-const-double-reference-can-be-assigned-to-int-but-not-non-const-one

This is just a work around until we find a proper solution. It has apparently
no effects on libclaw's only r-dep plee-the-bear.

Forwarded: no
---
 claw/code/tween/single_tweener.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/claw/code/tween/single_tweener.cpp b/claw/code/tween/single_tweener.cpp
index 2a3c7fe..e446dfc 100644
--- a/claw/code/tween/single_tweener.cpp
+++ b/claw/code/tween/single_tweener.cpp
@@ -122,7 +122,7 @@ claw::tween::single_tweener::single_tweener
 ( double& val, double end, double duration, easing_function e )
   : m_init(val), m_end(end), m_date(0), m_duration(duration), m_easing(e)
 {
-  m_callback = boost::bind( &local_swap, boost::ref(val), _1 );
+  //m_callback = boost::bind( &local_swap, boost::ref(val), _1 );
 } // single_tweener::single_tweener()
 
 /*----------------------------------------------------------------------------*/
