From ad326841ecca3e1a31102d5ddaf4e82f55a13742 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Fri, 3 Aug 2018 18:31:46 +0100 Subject: [PATCH] Correct spelling of "__clang__" so that the headers compile on clang/windows. --- include/boost/type_traits/has_trivial_move_assign.hpp | 2 +- include/boost/type_traits/has_trivial_move_constructor.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/type_traits/has_trivial_move_assign.hpp b/include/boost/type_traits/has_trivial_move_assign.hpp index 6d954ab..7b39269 100644 --- a/include/boost/type_traits/has_trivial_move_assign.hpp +++ b/include/boost/type_traits/has_trivial_move_assign.hpp @@ -24,7 +24,7 @@ #endif #endif -#if defined(__GNUC__) || defined(__clang) +#if defined(__GNUC__) || defined(__clang__) #include #include #endif diff --git a/include/boost/type_traits/has_trivial_move_constructor.hpp b/include/boost/type_traits/has_trivial_move_constructor.hpp index 5784f4b..2ecfc36 100644 --- a/include/boost/type_traits/has_trivial_move_constructor.hpp +++ b/include/boost/type_traits/has_trivial_move_constructor.hpp @@ -22,7 +22,7 @@ #include #endif -#if defined(__GNUC__) || defined(__clang) +#if defined(__GNUC__) || defined(__clang__) #include #include #endif