Skip to content

Commit

Permalink
change c++ std from gnu++14 to c++14 (#13248)
Browse files Browse the repository at this point in the history
  • Loading branch information
ckerr committed Jun 15, 2018
1 parent fa79b40 commit 2d15b8f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions toolchain.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -191,7 +191,7 @@
}],
['OS=="linux" and _toolset=="host"', {
'cflags_cc': [
'-std=gnu++14',
'-std=c++14',
],
}],
],
Expand All @@ -207,7 +207,7 @@
],
'target_defaults': {
'cflags_cc': [
'-std=gnu++14',
'-std=c++14',
],
},
}],
Expand Down

0 comments on commit 2d15b8f

Please sign in to comment.