ndarray / Boost.NumPy

Boost.Python interface for NumPy; now deprecated in factor of the version in Boost.Python itself.
Boost Software License 1.0
151 stars 73 forks source link

boost::is_unsigned used without header included #81

Open nbecker opened 6 years ago

nbecker commented 6 years ago

include/ndarray/converter/PyConverter.h uses boost::is_unsigned, but doesn't include the required header, and fails compile with clang++.

It appears switching to std::is_unsigned fixes it (and is probably better anyway)