$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r58340 - sandbox/odeint/branches/karsten/boost/numeric/odeint
From: mario.mulansky_at_[hidden]
Date: 2009-12-13 05:33:57
Author: mariomulansky
Date: 2009-12-13 05:33:56 EST (Sun, 13 Dec 2009)
New Revision: 58340
URL: http://svn.boost.org/trac/boost/changeset/58340
Log:
forgot a bracket
Text files modified: 
   sandbox/odeint/branches/karsten/boost/numeric/odeint/container_traits_mtl4_dense2d.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox/odeint/branches/karsten/boost/numeric/odeint/container_traits_mtl4_dense2d.hpp
==============================================================================
--- sandbox/odeint/branches/karsten/boost/numeric/odeint/container_traits_mtl4_dense2d.hpp	(original)
+++ sandbox/odeint/branches/karsten/boost/numeric/odeint/container_traits_mtl4_dense2d.hpp	2009-12-13 05:33:56 EST (Sun, 13 Dec 2009)
@@ -124,7 +124,7 @@
 
     self& operator+=(ValueType const& value)
     {
-        map( *cursor, value + static_cast<ValueType>map(*cursor)) );
+        map( *cursor, value + static_cast<ValueType>(map(*cursor)) );
         return *this;
     }