From b9c0a0e35de2cdc93842e5178b66e2d2c6fc6b79 Mon Sep 17 00:00:00 2001 From: Doug Hoyte Date: Fri, 15 Sep 2023 17:46:17 -0400 Subject: [PATCH] compile C++ test harness with warnings --- test/cpp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cpp/Makefile b/test/cpp/Makefile index c18caff..686d0f6 100644 --- a/test/cpp/Makefile +++ b/test/cpp/Makefile @@ -1,2 +1,2 @@ harness: harness.cpp ../../cpp/Negentropy.h - g++ -g -std=c++20 -I../../cpp/ -I ./hoytech-cpp/ harness.cpp -lcrypto -o harness + g++ -g -Wall -std=c++20 -I../../cpp/ -I ./hoytech-cpp/ harness.cpp -lcrypto -o harness