From 5ae18d139e8c3f65131ac9135ec87e86af8f766d Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Sat, 2 May 2020 18:16:16 +0300 Subject: [PATCH] Use BOOST_BORLANDC in integer_log2.hpp --- include/boost/integer/integer_log2.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/integer/integer_log2.hpp b/include/boost/integer/integer_log2.hpp index 0acfa2e..afd1b14 100644 --- a/include/boost/integer/integer_log2.hpp +++ b/include/boost/integer/integer_log2.hpp @@ -16,11 +16,11 @@ #define BOOST_INTEGER_INTEGER_LOG2_HPP #include -#if defined(__BORLANDC__) && !defined(__clang__) -#include -#endif #include #include +#if defined(BOOST_BORLANDC) +#include +#endif namespace boost {