From 0ce2bd2f7a8431f96fdb588a0ebb5418fc3d16c5 Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Wed, 4 Aug 2004 09:50:37 +0000 Subject: [PATCH] a pair of missing std:: qualifers for size_t [SVN r24287] --- test3/test31.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test3/test31.cpp b/test3/test31.cpp index c3b31444..80115221 100644 --- a/test3/test31.cpp +++ b/test3/test31.cpp @@ -182,23 +182,23 @@ void test_vector () { #ifdef USE_STD_MAP #ifdef USE_FLOAT std::cout << "float, std::map" << std::endl; - test_my_vector >, 3 > () (); + test_my_vector >, 3 > () (); #endif #ifdef USE_DOUBLE std::cout << "double, std::map" << std::endl; - test_my_vector >, 3 > () (); + test_my_vector >, 3 > () (); #endif #ifdef USE_STD_COMPLEX #ifdef USE_FLOAT std::cout << "std::complex, std::map" << std::endl; - test_my_vector, std::map > >, 3 > () (); + test_my_vector, std::map > >, 3 > () (); #endif #ifdef USE_DOUBLE std::cout << "std::complex, std::map" << std::endl; - test_my_vector, std::map > > , 3 > () (); + test_my_vector, std::map > > , 3 > () (); #endif #endif #endif