From 495b540e0500fcdd0db99cd0dec2caf316be87f2 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 4 May 2002 10:55:15 +0000 Subject: [PATCH] Borland C++ Builder 6 fixes [SVN r13659] --- include/boost/pool/detail/singleton.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/pool/detail/singleton.hpp b/include/boost/pool/detail/singleton.hpp index 26771ae..3189220 100644 --- a/include/boost/pool/detail/singleton.hpp +++ b/include/boost/pool/detail/singleton.hpp @@ -64,7 +64,7 @@ struct singleton_default // This constructor does nothing more than ensure that instance() // is called before main() begins, thus creating the static // T object before multithreading race issues can come up. - object_creator() { singleton_default::instance(); } + object_creator() { singleton_default::instance(); } inline void do_nothing() const { } }; static object_creator create_object;