correct a test that differ between c++11 and c++98

This commit is contained in:
hugogogo
2022-07-01 12:28:26 +02:00
parent e27bf01db4
commit ef70cc5938
2 changed files with 1 additions and 9 deletions

View File

@@ -38,8 +38,8 @@ CC = c++
EXT = cpp
CFLAGS = -Wall -Wextra -Werror $(INCLUDES)
#CFLAGS += -MMD -MP #see end-page note on header dependencie
#CFLAGS += -std=c++98
#CFLAGS += -MMD -MP #see end-page note on header dependencie
#CFLAGS += -g3
CFLAGS_STL = $(CFLAGS)

View File

@@ -36,14 +36,6 @@ TEST_V(tests_vector_operator_assignation)
std::cout << "Size of foo: " << int(foo.size()) << '\n';
std::cout << "Size of bar: " << int(bar.size()) << '\n';
// title
TITLE(more informations)
PRINT(foo);
PRINT(bar);
DELETE
}