From 41ea142bc9e7511b793bef1aa5638bb6708b6881 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Mon, 25 Sep 2000 05:37:27 +0000 Subject: [PATCH] fixed VC++ warning [SVN r7814] --- include/boost/pending/fibonacci_heap.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/pending/fibonacci_heap.hpp b/include/boost/pending/fibonacci_heap.hpp index b5e2ff14..7bc47945 100644 --- a/include/boost/pending/fibonacci_heap.hpp +++ b/include/boost/pending/fibonacci_heap.hpp @@ -39,7 +39,7 @@ public: : _key(n), _left(n), _right(n), _p(n), _mark(n), _degree(n), _n(0), _root(n), _id(id), _compare(cmp), _child(n), #ifdef BOOST_MSVC - new_roots(log(float(n)) + 5) { } + new_roots(int(log(float(n))) + 5) { } #else new_roots(std::log(float(n)) + 5) { } #endif