Make the functions static in container_fwd_test.

[SVN r32579]
This commit is contained in:
Daniel James
2006-02-05 14:00:23 +00:00
parent a9144ed80b
commit f9a050b68e

View File

@@ -2,58 +2,58 @@
#if BOOST_WORKAROUND(__GNUC__, < 3) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) #if BOOST_WORKAROUND(__GNUC__, < 3) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION)
template <class charT, class Allocator> template <class charT, class Allocator>
void test(std::basic_string<charT, std::string_char_traits<charT>, Allocator> const&) static void test(std::basic_string<charT, std::string_char_traits<charT>, Allocator> const&)
{ {
} }
#else #else
template <class charT, class Allocator> template <class charT, class Allocator>
void test(std::basic_string<charT, std::char_traits<charT>, Allocator> const&) static void test(std::basic_string<charT, std::char_traits<charT>, Allocator> const&)
{ {
} }
#endif #endif
template <class T, class Allocator> template <class T, class Allocator>
void test(std::deque<T, Allocator> const&) static void test(std::deque<T, Allocator> const&)
{ {
} }
template <class T, class Allocator> template <class T, class Allocator>
void test(std::list<T, Allocator> const&) static void test(std::list<T, Allocator> const&)
{ {
} }
template <class T, class Allocator> template <class T, class Allocator>
void test(std::vector<T, Allocator> const&) static void test(std::vector<T, Allocator> const&)
{ {
} }
template <class Key, class T, class Compare, class Allocator> template <class Key, class T, class Compare, class Allocator>
void test(std::map<Key, T, Compare, Allocator> const&) static void test(std::map<Key, T, Compare, Allocator> const&)
{ {
} }
template <class Key, class T, class Compare, class Allocator> template <class Key, class T, class Compare, class Allocator>
void test(std::multimap<Key, T, Compare, Allocator> const&) static void test(std::multimap<Key, T, Compare, Allocator> const&)
{ {
} }
template <class Key, class Compare, class Allocator> template <class Key, class Compare, class Allocator>
void test(std::set<Key, Compare, Allocator> const&) static void test(std::set<Key, Compare, Allocator> const&)
{ {
} }
template <class Key, class Compare, class Allocator> template <class Key, class Compare, class Allocator>
void test(std::multiset<Key, Compare, Allocator> const&) static void test(std::multiset<Key, Compare, Allocator> const&)
{ {
} }
template <std::size_t N> template <std::size_t N>
void test(std::bitset<N> const&) static void test(std::bitset<N> const&)
{ {
} }
template <class T> template <class T>
void test(std::complex<T> const&) static void test(std::complex<T> const&)
{ {
} }