diff --git a/include/boost/intrusive/detail/hash_combine.hpp b/include/boost/intrusive/detail/hash_combine.hpp index 6a13c8b..f074ce2 100644 --- a/include/boost/intrusive/detail/hash_combine.hpp +++ b/include/boost/intrusive/detail/hash_combine.hpp @@ -31,9 +31,10 @@ #include #if defined(_MSC_VER) -# define BOOST_INTRUSIVE_HASH_ROTL32(x, r) _rotl(x,r) +# include +# define BOOST_INTRUSIVE_HASH_ROTL32(x, r) _rotl(x,r) #else -# define BOOST_INTRUSIVE_HASH_ROTL32(x, r) (x << r) | (x >> (32 - r)) +# define BOOST_INTRUSIVE_HASH_ROTL32(x, r) (x << r) | (x >> (32 - r)) #endif namespace boost {