From 6d33feebb7da853f240732818955a67f41d91e3b Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 5 Feb 2006 14:00:23 +0000 Subject: [PATCH] Make the functions static in container_fwd_test. [SVN r32579] --- hash/test/container_fwd_test.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/hash/test/container_fwd_test.cpp b/hash/test/container_fwd_test.cpp index 7baaa67..12cca12 100644 --- a/hash/test/container_fwd_test.cpp +++ b/hash/test/container_fwd_test.cpp @@ -2,58 +2,58 @@ #if BOOST_WORKAROUND(__GNUC__, < 3) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) template -void test(std::basic_string, Allocator> const&) +static void test(std::basic_string, Allocator> const&) { } #else template -void test(std::basic_string, Allocator> const&) +static void test(std::basic_string, Allocator> const&) { } #endif template -void test(std::deque const&) +static void test(std::deque const&) { } template -void test(std::list const&) +static void test(std::list const&) { } template -void test(std::vector const&) +static void test(std::vector const&) { } template -void test(std::map const&) +static void test(std::map const&) { } template -void test(std::multimap const&) +static void test(std::multimap const&) { } template -void test(std::set const&) +static void test(std::set const&) { } template -void test(std::multiset const&) +static void test(std::multiset const&) { } template -void test(std::bitset const&) +static void test(std::bitset const&) { } template -void test(std::complex const&) +static void test(std::complex const&) { }