aboutsummaryrefslogtreecommitdiffhomepage
path: root/gn/BUILD.gn
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2018-06-02 11:18:33 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-06-04 13:22:49 +0000
commit7258e97e8e3af173cc5131f309ae487f663bfd39 (patch)
tree80ffdeb826b306049f9ce3c9d706d3a893ee6f66 /gn/BUILD.gn
parent728b7f3cdd0ad6a76c10e45fc4a4a8f4c5208c6e (diff)
C++14
Change-Id: I4bbf3e5e6d9d4e11e968a0bc88ce43444047a382 Reviewed-on: https://skia-review.googlesource.com/130903 Commit-Queue: Brian Salomon <bsalomon@google.com> Reviewed-by: Mike Klein <mtklein@google.com>
Diffstat (limited to 'gn/BUILD.gn')
-rw-r--r--gn/BUILD.gn2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn/BUILD.gn b/gn/BUILD.gn
index 2e38e27060..1d4cd7b035 100644
--- a/gn/BUILD.gn
+++ b/gn/BUILD.gn
@@ -96,7 +96,7 @@ config("default") {
"-fPIC",
"-Werror",
]
- cflags_cc += [ "-std=c++11" ]
+ cflags_cc += [ "-std=c++14" ]
# The main idea is to slim the exported API, but these flags also improve link time on Mac.
# These would make stack traces worse on Linux, so we don't just set them willy-nilly.