From 7350fcc9228f410309734c3fb6dae2bf513cdd98 Mon Sep 17 00:00:00 2001 From: Brodie Thiesfield Date: Sat, 13 May 2023 13:25:03 +0900 Subject: [PATCH] Require c++14 --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index 1af90a5..4e7b056 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,5 +1,5 @@ CXX?=g++ -CXXFLAGS+=-Wall -std=c++11 `pkg-config --cflags gtest_main` +CXXFLAGS+=-Wall -std=c++14 `pkg-config --cflags gtest_main` LDFLAGS+=`pkg-config --libs gtest_main` OBJS=ts-roundtrip.o ts-snippets.o ts-utf8.o ts-bugfix.o ts-quotes.o ts-noconvert.o