From 2d15b8fe7854e9903f8b72e668164015e288997c Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Fri, 15 Jun 2018 11:12:49 -0500 Subject: [PATCH] change c++ std from gnu++14 to c++14 (#13248) --- toolchain.gypi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/toolchain.gypi b/toolchain.gypi index f4cc9df68d54..90a553f5576f 100644 --- a/toolchain.gypi +++ b/toolchain.gypi @@ -180,7 +180,7 @@ }], ['OS=="linux" and _toolset=="target"', { 'cflags_cc': [ - '-std=gnu++14', + '-std=c++14', '-nostdinc++', '-isystem<(libchromiumcontent_src_dir)/buildtools/third_party/libc++/trunk/include', '-isystem<(libchromiumcontent_src_dir)/buildtools/third_party/libc++abi/trunk/include', @@ -191,7 +191,7 @@ }], ['OS=="linux" and _toolset=="host"', { 'cflags_cc': [ - '-std=gnu++14', + '-std=c++14', ], }], ], @@ -207,7 +207,7 @@ ], 'target_defaults': { 'cflags_cc': [ - '-std=gnu++14', + '-std=c++14', ], }, }],