summaryrefslogtreecommitdiff
path: root/.ycm_extra_conf.py
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2014-06-04 15:03:08 -0400
committerDave Reisner <dreisner@archlinux.org>2014-06-04 15:41:10 -0400
commitd0069261a71665a965b26d208dee098ea629cbbe (patch)
treec692220880daa739ba0b49b69e5f06d1c5da337e /.ycm_extra_conf.py
parent512922f8b423eed093918f78461b7bf7c45592cb (diff)
ycm: update flag blacklist
-Wdate-time isn't known to clang, and it seems to cause errors in syntastic.
Diffstat (limited to '.ycm_extra_conf.py')
-rw-r--r--.ycm_extra_conf.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/.ycm_extra_conf.py b/.ycm_extra_conf.py
index a90610d29..4edd3c8a7 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: