From 4ea629d31d4a0b3cab98b0b237e666c265dae895 Mon Sep 17 00:00:00 2001 From: Benjamin Carman Date: Thu, 1 Nov 2018 02:25:08 -0400 Subject: [PATCH] Added line to sample Makefile in googletest/googletest/make to specify use of C++11 in CXXFLAGS as required by the system --- googletest/make/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googletest/make/Makefile b/googletest/make/Makefile index 9ac74493..91eb68b5 100644 --- a/googletest/make/Makefile +++ b/googletest/make/Makefile @@ -25,7 +25,7 @@ USER_DIR = ../samples CPPFLAGS += -isystem $(GTEST_DIR)/include # Flags passed to the C++ compiler. -CXXFLAGS += -g -Wall -Wextra -pthread +CXXFLAGS += -g -Wall -Wextra -pthread -std=c++11 # All tests produced by this Makefile. Remember to add new tests you # created to the list.