diff options
author | YamaArashi <shadow962@live.com> | 2017-02-03 20:34:51 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2017-02-03 20:34:51 -0800 |
commit | 18e21f8b090a49934a80d56b1796e0c1d469a22c (patch) | |
tree | 26749c8b642da57e4a1997c9043f77b4d664179f /tools/preproc/c_file.cpp | |
parent | 6a66bda6c1fd80360fa21ff5658550cd5c92edfe (diff) |
remove C++14 feature from tools
Diffstat (limited to 'tools/preproc/c_file.cpp')
-rw-r--r-- | tools/preproc/c_file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |