minor Borland fix

[SVN r15434]
This commit is contained in:
Aleksey Gurtovoy
2002-09-18 04:44:32 +00:00
parent d5669c55ea
commit 3e40fe2c5b

View File

@ -81,7 +81,9 @@ template <typename T> struct is_enum_impl
#endif
#ifdef __BORLANDC__
typedef ::boost::detail::is_enum_helper< ::boost::is_enum<T>::selector> se_t;
typedef ::boost::detail::is_enum_helper<
::boost::detail::is_enum_impl<T>::selector
> se_t;
#else
typedef ::boost::detail::is_enum_helper<selector> se_t;
#endif