From efb7469f57faa758b4cc80410c1b32ae2e9a17a5 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Thu, 28 Jun 2001 17:45:06 +0000 Subject: [PATCH] fixed warning [SVN r10470] --- include/boost/pending/fibonacci_heap.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/pending/fibonacci_heap.hpp b/include/boost/pending/fibonacci_heap.hpp index 806e0b21..77c8a2fe 100644 --- a/include/boost/pending/fibonacci_heap.hpp +++ b/include/boost/pending/fibonacci_heap.hpp @@ -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