summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-11-02 18:19:07 (GMT)
committerGitHub <noreply@github.com>2018-11-02 18:19:07 (GMT)
commit529c2c6f4af29dadb8ee5cddf6a7919caa5ca5f6 (patch)
tree3aa25106d0d18eb891ff0376ed3ccd50789888db
parent88c15b5fdeccfe597998c1cbf73d5be02a9ce728 (diff)
parent9636db6b2b9bd15b10f50473436451005a656f25 (diff)
downloadgoogletest-529c2c6f4af29dadb8ee5cddf6a7919caa5ca5f6.zip
googletest-529c2c6f4af29dadb8ee5cddf6a7919caa5ca5f6.tar.gz
googletest-529c2c6f4af29dadb8ee5cddf6a7919caa5ca5f6.tar.bz2
Merge pull request #1950 from benjamincarman/makefix
Updating Sample Makefile to Specify C++11
-rw-r--r--googletest/make/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/make/Makefile b/googletest/make/Makefile
index 9ac7449..91eb68b 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.