git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@20 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2009-09-01 20:30:23 +00:00
parent 91ea509797
commit 44431e359c
2 changed files with 3 additions and 3 deletions

View file

@ -41,7 +41,7 @@ namespace detail
}; };
template< typename T > 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 > template< typename T >

View file

@ -36,7 +36,7 @@ namespace detail
}; };
template< typename T > 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 > 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 >
{ {
}; };