diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-01-16T21·24+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-01-16T21·24+0100 |
commit | 2b9d0a99cbf7649c20492bc539e2823a2d2e57c5 (patch) | |
tree | bdf06b8448c4f8b619383bda5284e7b4ee1219d6 /Makefile | |
parent | 40dfac968a87c1d90b5b3c9e3ffe72a370165047 (diff) |
AutoDeleteArray -> std::unique_ptr
Also, switch to C++14 for std::make_unique.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 2ee40b56b1d3..3f80aafb8757 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ makefiles = \ tests/local.mk #src/download-via-ssh/local.mk \ -GLOBAL_CXXFLAGS += -std=c++11 -g -Wall +GLOBAL_CXXFLAGS += -std=c++14 -g -Wall -include Makefile.config |