Use BOOST_BORLANDC in integer_log2.hpp

This commit is contained in:
Andrey Semashev
2020-05-02 18:16:16 +03:00
parent 58da9b5aa8
commit 5ae18d139e

View File

@ -16,11 +16,11 @@
#define BOOST_INTEGER_INTEGER_LOG2_HPP
#include <assert.h>
#if defined(__BORLANDC__) && !defined(__clang__)
#include <climits>
#endif
#include <boost/limits.hpp>
#include <boost/config.hpp>
#if defined(BOOST_BORLANDC)
#include <climits>
#endif
namespace boost {