diff --git a/test/object_cache/object_cache_test.cpp b/test/object_cache/object_cache_test.cpp index 0f0d6521..40f55db4 100644 --- a/test/object_cache/object_cache_test.cpp +++ b/test/object_cache/object_cache_test.cpp @@ -48,7 +48,7 @@ int test_main(int /*argc*/, char * /*argv*/[]) int i; for(i = 0; i < 20; ++i) { - boost::shared_ptr p = boost::object_cache::get(i, max_cache_size); + boost::shared_ptr p = boost::object_cache::get(i, max_cache_size); BOOST_CHECK(p->value() == i); p = boost::object_cache::get(i, max_cache_size); BOOST_CHECK(p->value() == i); @@ -63,7 +63,7 @@ int test_main(int /*argc*/, char * /*argv*/[]) { for(i = 20 - max_cache_size; i < 20; ++i) { - boost::shared_ptr p = boost::object_cache::get(i, max_cache_size); + boost::shared_ptr p = boost::object_cache::get(i, max_cache_size); BOOST_CHECK(p->value() == i); p = boost::object_cache::get(i, max_cache_size); BOOST_CHECK(p->value() == i); @@ -75,3 +75,4 @@ int test_main(int /*argc*/, char * /*argv*/[]) #include +