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