From f467da54389d7d6933bfa0f952577273b5c46db7 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 5 Feb 2006 14:11:59 +0000 Subject: [PATCH] Add pair to container_fwd_test. [SVN r32582] --- hash/test/container_fwd_test.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hash/test/container_fwd_test.cpp b/hash/test/container_fwd_test.cpp index 512e5d3..caf42eb 100644 --- a/hash/test/container_fwd_test.cpp +++ b/hash/test/container_fwd_test.cpp @@ -62,6 +62,11 @@ static void test(std::complex const&) { } +template +static void test(std::pair const&) +{ +} + #include #include #include @@ -70,6 +75,7 @@ static void test(std::complex const&) #include #include #include +#include int main() { @@ -84,6 +90,7 @@ int main() std::bitset<10> x9; std::string x10; std::complex x11; + std::pair, char***> x12; test(x1); test(x2); @@ -96,6 +103,7 @@ int main() test(x9); test(x10); test(x11); + test(x12); return 0; }