From 352520cde882e62f695d3bc0ef27a9806a4d96dd Mon Sep 17 00:00:00 2001 From: mat007 Date: Wed, 28 Apr 2010 13:41:29 +0000 Subject: [PATCH] Fix for gcc git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@149 860be788-9bd5-4423-9f1e-828f051e677b --- src/libraries/turtle/format.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libraries/turtle/format.hpp b/src/libraries/turtle/format.hpp index c5f9f0d..67edc5d 100644 --- a/src/libraries/turtle/format.hpp +++ b/src/libraries/turtle/format.hpp @@ -52,7 +52,7 @@ namespace protect template< typename T > std::string serialize( const T& t, BOOST_DEDUCED_TYPENAME boost::enable_if< - BOOST_DEDUCED_TYPENAME is_serializable< T > >::type* = 0 ) + BOOST_DEDUCED_TYPENAME protect::is_serializable< T > >::type* = 0 ) { std::stringstream s; static_cast< std::ostream& >( s ) << std::boolalpha << t; @@ -61,7 +61,7 @@ namespace protect template< typename T > std::string serialize( const T&, BOOST_DEDUCED_TYPENAME boost::disable_if< - BOOST_DEDUCED_TYPENAME is_serializable< T > >::type* = 0 ) + BOOST_DEDUCED_TYPENAME protect::is_serializable< T > >::type* = 0 ) { return "?"; }