mirror of
https://github.com/boostorg/functional.git
synced 2025-08-02 14:04:27 +02:00
Make the functions static in container_fwd_test.
[SVN r32579]
This commit is contained in:
@@ -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&)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user