From 0ffa255203cd1f69cd913b394f5729f54b8dd60f Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Thu, 16 Sep 2004 06:07:22 +0000 Subject: [PATCH] no matrix needed [SVN r25140] --- test1/test11.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/test1/test11.cpp b/test1/test11.cpp index f3e5e0c3..e589a7f2 100644 --- a/test1/test11.cpp +++ b/test1/test11.cpp @@ -18,7 +18,6 @@ #include #include -#include #include #include "test1.hpp" @@ -224,23 +223,23 @@ void test_vector () { #ifdef USE_BOUNDED_VECTOR #ifdef USE_FLOAT - std::cout << "float" << std::endl; + std::cout << "float, bounded" << std::endl; test_my_vector, 3> () (); #endif #ifdef USE_DOUBLE - std::cout << "double" << std::endl; + std::cout << "double, bounded" << std::endl; test_my_vector, 3> () (); #endif #ifdef USE_STD_COMPLEX #ifdef USE_FLOAT - std::cout << "std::complex" << std::endl; + std::cout << "std::complex, bounded" << std::endl; test_my_vector, 3>, 3> () (); #endif #ifdef USE_DOUBLE - std::cout << "std::complex" << std::endl; + std::cout << "std::complex, bounded" << std::endl; test_my_vector, 3>, 3> () (); #endif #endif