From f1580c95ccd3be156801f55d33c859420900e120 Mon Sep 17 00:00:00 2001 From: mat007 Date: Sat, 26 Apr 2014 08:17:40 +0000 Subject: [PATCH] Fixed line too long git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@727 860be788-9bd5-4423-9f1e-828f051e677b --- turtle/detail/action.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/turtle/detail/action.hpp b/turtle/detail/action.hpp index 49f4eda..85a5333 100644 --- a/turtle/detail/action.hpp +++ b/turtle/detail/action.hpp @@ -92,7 +92,8 @@ namespace detail template< typename Value > void moves( BOOST_RV_REF( Value ) v ) { - this->set( lambda_type::make_move( v_.store( boost::move( v ) ) ) ); + this->set( + lambda_type::make_move( v_.store( boost::move( v ) ) ) ); } private: