add missing typename

[SVN r16358]
This commit is contained in:
Aleksey Gurtovoy
2002-11-21 08:46:49 +00:00
parent 6e4f49afc6
commit 3c5b4f6ab8

View File

@@ -17,7 +17,7 @@ namespace detail{
template <class T>
struct is_polymorphic_imp1
{
typedef remove_cv<T>::type ncvT;
typedef typename remove_cv<T>::type ncvT;
struct d1 : public ncvT
{
d1();
@@ -81,6 +81,3 @@ BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_polymorphic,T,::boost::detail::is_polymorphic_im
#include "boost/type_traits/detail/bool_trait_undef.hpp"
#endif