Bump standard to c++14 for std::make_unique()

This commit is contained in:
Charles Baker 2023-04-17 20:46:17 +12:00
parent 3c810e1a74
commit 6b4285bc78

View file

@ -41,7 +41,7 @@ local cc = forge.Toolset 'cc_${platform}' {
runtime_library = variant == 'debug' and 'static_debug' or 'static_release';
run_time_type_info = true;
stack_size = 1048576;
standard = 'c++11';
standard = 'c++14';
string_pooling = variant == 'shipping';
strip = false;
warning_level = 3;