2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-13 00:22:15 +00:00

fixed warning

[SVN r10470]
This commit is contained in:
Jeremy Siek
2001-06-28 17:45:06 +00:00
parent 1a0b0ad901
commit efb7469f57

View File

@@ -39,9 +39,9 @@ public:
: _key(n), _left(n), _right(n), _p(n), _mark(n), _degree(n),
_n(0), _root(n), _id(id), _compare(cmp), _child(n),
#if defined(BOOST_MSVC) || defined(__ICL) // need a new macro?
new_roots(int(log(float(n))) + 5) { }
new_roots(size_type(log(float(n))) + 5) { }
#else
new_roots(std::log(float(n)) + 5) { }
new_roots(size_type(std::log(float(n))) + 5) { }
#endif
// 33