From 146eb2f3d348954f549ad53ca9c2b91fba55e5de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 31 Mar 2020 13:12:08 +0200 Subject: [PATCH] Travis: Try to fix build error --- oss-fuzz/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oss-fuzz/Makefile b/oss-fuzz/Makefile index 81cf65422..76d233e0c 100644 --- a/oss-fuzz/Makefile +++ b/oss-fuzz/Makefile @@ -18,7 +18,7 @@ fuzz-client: main.cpp type2.cpp type2.h ${CXX} -std=c++11 -g -O1 ${CXXFLAGS} -fsanitize=fuzzer -o fuzz-client ${INCLUDE_DIR} ${SRC_FILES} translate: translate.cpp type2.cpp type2.h - g++ -o translate type2.cpp translate.cpp + g++ -std=c++11 -o translate type2.cpp translate.cpp clean: rm -f oss-fuzz-client fuzz-client translate