]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/type_traits/is_compound.hpp
Also display the info about BibTeX databases in the TeX info panel.
[lyx.git] / boost / boost / type_traits / is_compound.hpp
index 01c38a7269fbfafc48f1ce34b5c8683e2064d63d..bbaaa42cd7ec9130515d07786b38895b0ce1b0dd 100644 (file)
@@ -18,6 +18,7 @@
 
 namespace boost {
 
+#if !defined( __CODEGEARC__ )
 namespace detail {
 
 template <typename T>
@@ -30,8 +31,13 @@ struct is_compound_impl
 };
 
 } // namespace detail
+#endif // !defined( __CODEGEARC__ )
 
+#if defined( __CODEGEARC__ )
+BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_compound,T,__is_compound(T))
+#else
 BOOST_TT_AUX_BOOL_TRAIT_DEF1(is_compound,T,::boost::detail::is_compound_impl<T>::value)
+#endif
 
 } // namespace boost