diff options
Diffstat (limited to '3rdParty/Boost/src/boost/detail/container_fwd.hpp')
-rw-r--r-- | 3rdParty/Boost/src/boost/detail/container_fwd.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/3rdParty/Boost/src/boost/detail/container_fwd.hpp b/3rdParty/Boost/src/boost/detail/container_fwd.hpp index 67c5a21..9a21252 100644 --- a/3rdParty/Boost/src/boost/detail/container_fwd.hpp +++ b/3rdParty/Boost/src/boost/detail/container_fwd.hpp @@ -68,7 +68,11 @@ namespace std template <class charT> struct char_traits; #endif - template <class T> class complex; + #if BOOST_CLANG + template <class T> struct complex; + #else + template <class T> class complex; + #endif } // gcc 3.4 and greater |