From 44431e359c0ba8bb5876dcf444f0c0c66def10f6 Mon Sep 17 00:00:00 2001 From: mat007 Date: Tue, 1 Sep 2009 20:30:23 +0000 Subject: [PATCH] Clean-up git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@20 860be788-9bd5-4423-9f1e-828f051e677b --- src/libraries/turtle/format.hpp | 2 +- src/libraries/turtle/is_functor.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libraries/turtle/format.hpp b/src/libraries/turtle/format.hpp index f91ff99..dbb5602 100644 --- a/src/libraries/turtle/format.hpp +++ b/src/libraries/turtle/format.hpp @@ -41,7 +41,7 @@ namespace detail }; template< typename T > - struct is_serializable : public boost::integral_constant< bool, is_serializable_impl< T >::value > + struct is_serializable : boost::integral_constant< bool, is_serializable_impl< T >::value > {}; template< typename T > diff --git a/src/libraries/turtle/is_functor.hpp b/src/libraries/turtle/is_functor.hpp index 0b548c0..1c8e53e 100644 --- a/src/libraries/turtle/is_functor.hpp +++ b/src/libraries/turtle/is_functor.hpp @@ -36,7 +36,7 @@ namespace detail }; template< typename T > - struct has_result_type : public boost::integral_constant< bool, has_result_type_impl< T >::value > + struct has_result_type : boost::integral_constant< bool, has_result_type_impl< T >::value > { }; @@ -53,7 +53,7 @@ namespace detail }; template< typename T > - struct has_sig : public boost::integral_constant< bool, has_sig_impl< T >::value > + struct has_sig : boost::integral_constant< bool, has_sig_impl< T >::value > { };