From 512ad21a541537f763bf1eb0adc212450ebf495b Mon Sep 17 00:00:00 2001 From: Emil Dotchevski Date: Wed, 20 Aug 2008 21:48:35 +0000 Subject: [PATCH] fix for mutable problem, thanks Peter Klotz [SVN r48270] --- include/boost/exception/exception.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/exception/exception.hpp b/include/boost/exception/exception.hpp index d128cd3..4670481 100644 --- a/include/boost/exception/exception.hpp +++ b/include/boost/exception/exception.hpp @@ -105,7 +105,7 @@ boost template friend shared_ptr get_error_info( E const & ); - intrusive_ptr mutable data_; + mutable intrusive_ptr data_; }; #if BOOST_WORKAROUND( BOOST_MSVC, BOOST_TESTED_AT(1500) ) //See above.