cc_project_template_gn

A gn, ninja, and googletest-based C++ project template
git clone https://git.bracken.jp/cc_project_template_gn.git
Log | Files | Refs | Submodules | README | LICENSE

commit 684a87f74c84e29b6e9271be704c6004082f5912
parent c8e815a8cd949c4bb0f51fffc9587e352ace1b6c
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri,  5 Oct 2018 20:56:26 -0700

Disable -Wc++98-compat-pedantic

Diffstat:
Mbuild/BUILD.gn | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/build/BUILD.gn b/build/BUILD.gn @@ -19,9 +19,11 @@ config("compiler_warnings") { ] cflags_cc = [ "-Wno-c++98-compat", + "-Wno-c++98-compat-pedantic", ] cflags_objcc = [ "-Wno-c++98-compat", + "-Wno-c++98-compat-pedantic", ] }