Merge pull request #2135 from kulakowski/fnl-release-build

Don't warn on maybe-uninitialized in fnl
This commit is contained in:
George Kulakowski 2015-12-03 13:47:35 -08:00
commit 36b02aecb8

View File

@ -219,6 +219,11 @@ config("compiler") {
"//buildtools/third_party/libc++abi/trunk/include",
]
}
if (is_fnl) {
# TODO(kulakowski) remove when fnl no longer uses gcc
cflags += [ "-Wno-maybe-uninitialized" ]
}
}
if (is_clang && is_debug) {