Commit 128b02a9 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Two -Wno-* which complain about Linux include files

parent 23b154c6
......@@ -56,7 +56,6 @@ DESIRABLE_WFLAGS = [
"-Wnested-externs",
"-Wpointer-arith",
"-Wpointer-sign",
"-Wredundant-decls",
"-Wreturn-type",
"-Wshadow",
"-Wstrict-aliasing",
......@@ -75,6 +74,8 @@ UNDESIRABLE_WFLAGS = [
"-Wno-old-style-definition", # Does not like vgz
"-Wno-sign-compare", # Fixable
"-Wno-implicit-fallthrough", # Probably Fixable
"-Wno-builtin-requires-header", # Complains about linux::pthread.h
"-Wno-redundant-decls", # Complains about centos::stdio.h
]
def main():
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment