aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-03-20 02:32:54 +0000
committerlloyd <[email protected]>2013-03-20 02:32:54 +0000
commit1d4b469ecd0499559a463f90bd8553ef075061d9 (patch)
tree6bc615a7b13f1cd9b58bcc1b69743e2813f59319 /doc
parentbd2cd28b7766b6d7d61960aa5b2dfaa491b664c2 (diff)
In examples makefile, trust that g++ is C++11 capable
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/GNUmakefile b/doc/examples/GNUmakefile
index fc4755d96..49bccfd38 100644
--- a/doc/examples/GNUmakefile
+++ b/doc/examples/GNUmakefile
@@ -1,7 +1,7 @@
BOTAN_CONFIG = botan-config
-CXX = g++-4.7.0
+CXX = g++
CFLAGS = -O2 -ansi -std=c++11 -W -Wall -I../../build/include
LIBS = -L../.. -lbotan-1.11