Correct spelling of "__clang__" so that the headers compile on clang/windows.

This commit is contained in:
jzmaddock
2018-08-03 18:31:46 +01:00
parent 373c9fc4b4
commit ad326841ec
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@
#endif
#endif
#if defined(__GNUC__) || defined(__clang)
#if defined(__GNUC__) || defined(__clang__)
#include <boost/type_traits/is_assignable.hpp>
#include <boost/type_traits/is_volatile.hpp>
#endif

View File

@ -22,7 +22,7 @@
#include <boost/type_traits/is_volatile.hpp>
#endif
#if defined(__GNUC__) || defined(__clang)
#if defined(__GNUC__) || defined(__clang__)
#include <boost/type_traits/is_constructible.hpp>
#include <boost/type_traits/is_volatile.hpp>
#endif