From d0069261a71665a965b26d208dee098ea629cbbe Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Wed, 4 Jun 2014 15:03:08 -0400 Subject: [PATCH] ycm: update flag blacklist -Wdate-time isn't known to clang, and it seems to cause errors in syntastic. --- .ycm_extra_conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.ycm_extra_conf.py b/.ycm_extra_conf.py index a90610d29d..4edd3c8a74 100644 --- a/.ycm_extra_conf.py +++ b/.ycm_extra_conf.py @@ -62,5 +62,6 @@ flags = Flatten(map(GetFlagsFromMakefile, [ # these flags cause crashes in libclang, so remove them flags.remove('-Wlogical-op') flags.remove('-Wsuggest-attribute=noreturn') +flags.remove('-Wdate-time') # vim: set et ts=2 sw=2: