Commit e611823e by Wenzel Jakob

quench warning on osx

parent 9e0a0568
...@@ -227,7 +227,7 @@ private: ...@@ -227,7 +227,7 @@ private:
NAMESPACE_BEGIN(detail) NAMESPACE_BEGIN(detail)
static constexpr int log2(size_t n, int k = 0) { return (n <= 1) ? k : log2(n >> 1, k + 1); } inline static constexpr int log2(size_t n, int k = 0) { return (n <= 1) ? k : log2(n >> 1, k + 1); }
inline std::string error_string(); inline std::string error_string();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment