From a15b19012fa79c8af4e50d094be80712f98caafc Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Mon, 25 Sep 2000 16:58:51 +0000 Subject: [PATCH] changed #ifdef BOOST_MSVC to BOOST_NO_STDC_NAMESPACE [SVN r7827] --- 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 7bc47945..ae704f6d 100644 --- a/include/boost/pending/fibonacci_heap.hpp +++ b/include/boost/pending/fibonacci_heap.hpp @@ -38,7 +38,7 @@ public: const ID& id = identity_property_map()) : _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 +#ifdef BOOST_NO_STDC_NAMESPACE new_roots(int(log(float(n))) + 5) { } #else new_roots(std::log(float(n)) + 5) { }