summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-06-03 20:22:42 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2015-06-03 20:22:42 +0100
commit57e11de9d655af22690140e7ef0941a57cbb15f7 (patch)
tree42b438724e6ce20faadc6ee27219be30767efa23
parentPrebuild (once) SQL for cursor operations. (diff)
downloadlibdbpp-postgresql-57e11de9d655af22690140e7ef0941a57cbb15f7.tar.bz2
libdbpp-postgresql-57e11de9d655af22690140e7ef0941a57cbb15f7.tar.xz
libdbpp-postgresql-57e11de9d655af22690140e7ef0941a57cbb15f7.zip
Move to C++0y
-rw-r--r--Jamroot.jam6
1 files changed, 3 insertions, 3 deletions
diff --git a/Jamroot.jam b/Jamroot.jam
index fe9fa3f..9d19983 100644
--- a/Jamroot.jam
+++ b/Jamroot.jam
@@ -7,11 +7,11 @@ variant component ;
project
: requirements
- <variant>release:<cflags>"-std=c++0x"
+ <variant>release:<cflags>"-std=c++1y"
<variant>release:<linkflags>"-Wl,-z,defs,--warn-once"
- <variant>debug:<cflags>"-W -Wall -Werror -Wwrite-strings -std=c++0x"
+ <variant>debug:<cflags>"-W -Wall -Werror -Wwrite-strings -std=c++1y"
<variant>debug:<linkflags>"-Wl,-z,defs,--warn-once"
- <variant>component:<cflags>"-W -Wall -Werror -Wwrite-strings -std=c++0x -fPIC"
+ <variant>component:<cflags>"-W -Wall -Werror -Wwrite-strings -std=c++1y -fPIC"
<variant>component:<linkflags>"-Wl,-z,lazy,--warn-once,-fPIC"
;