diff --git a/hash/test/container_fwd_test.cpp b/hash/test/container_fwd_test.cpp index 0409a1e..e51df8c 100644 --- a/hash/test/container_fwd_test.cpp +++ b/hash/test/container_fwd_test.cpp @@ -1,9 +1,16 @@ #include -template -void test(std::basic_string const&) +#if BOOST_WORKAROUND(__GNUC__, < 3) && !defined(__SGI_STL_PORT) && !defined(_STLPORT_VERSION) +template +void test(std::basic_string, Allocator> const&) { } +#else +template +void test(std::basic_string, Allocator> const&) +{ +} +#endif template void test(std::deque const&)