summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/preproc/Makefile2
-rw-r--r--tools/preproc/c_file.cpp2
-rw-r--r--tools/scaninc/Makefile2
-rw-r--r--tools/scaninc/c_file.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/tools/preproc/Makefile b/tools/preproc/Makefile
index 24f60e3f6..2d577c79f 100644
--- a/tools/preproc/Makefile
+++ b/tools/preproc/Makefile
@@ -1,6 +1,6 @@
CXX := g++
-CXXFLAGS := -std=c++14 -O2 -Wall -Wno-switch
+CXXFLAGS := -std=c++11 -O2 -Wall -Wno-switch
SRCS := asm_file.cpp c_file.cpp charmap.cpp preproc.cpp string_parser.cpp \
utf8.cpp
diff --git a/tools/preproc/c_file.cpp b/tools/preproc/c_file.cpp
index 3b4024efe..a2f178623 100644
--- a/tools/preproc/c_file.cpp
+++ b/tools/preproc/c_file.cpp
@@ -256,7 +256,7 @@ std::unique_ptr<unsigned char[]> CFile::ReadWholeFile(const std::string& path, i
size = ftell(fp);
- std::unique_ptr<unsigned char[]> buffer = std::make_unique<unsigned char[]>(size);
+ std::unique_ptr<unsigned char[]> buffer = std::unique_ptr<unsigned char[]>(new unsigned char[size]);
rewind(fp);
diff --git a/tools/scaninc/Makefile b/tools/scaninc/Makefile
index c408e4a6e..71c4389ef 100644
--- a/tools/scaninc/Makefile
+++ b/tools/scaninc/Makefile
@@ -1,6 +1,6 @@
CXX = g++
-CXXFLAGS = -Wall -std=c++14 -O2
+CXXFLAGS = -Wall -std=c++11 -O2
SRCS = scaninc.cpp c_file.cpp asm_file.cpp
diff --git a/tools/scaninc/c_file.cpp b/tools/scaninc/c_file.cpp
index 970fbe135..bb84fedbe 100644
--- a/tools/scaninc/c_file.cpp
+++ b/tools/scaninc/c_file.cpp
@@ -222,7 +222,7 @@ std::unique_ptr<unsigned char[]> CFile::ReadWholeFile(const std::string& path, i
size = ftell(fp);
- std::unique_ptr<unsigned char[]> buffer = std::make_unique<unsigned char[]>(size);
+ std::unique_ptr<unsigned char[]> buffer = std::unique_ptr<unsigned char[]>(new unsigned char[size]);
rewind(fp);