diff options
author | dim <dim@FreeBSD.org> | 2011-12-18 00:24:11 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2011-12-18 00:24:11 +0000 |
commit | 6990aaaaad9033700839123d1cd90d89b80444b4 (patch) | |
tree | 52afe68944b45c86cc990ac397b4061b635b8a02 /share | |
parent | 94c83b90f38fde1c30be2fcdfd396f6245415ad5 (diff) | |
download | FreeBSD-src-6990aaaaad9033700839123d1cd90d89b80444b4.zip FreeBSD-src-6990aaaaad9033700839123d1cd90d89b80444b4.tar.gz |
Disable yet another clang warning (-Wconversion) when WARNS <= 3.
MFC after: 1 week
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.sys.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk index b7f330c..d4830f1 100644 --- a/share/mk/bsd.sys.mk +++ b/share/mk/bsd.sys.mk @@ -62,7 +62,8 @@ CWARNFLAGS += -Wno-pointer-sign . if ${CC:T:Mclang} == "clang" . if ${WARNS} <= 3 CWARNFLAGS += -Wno-tautological-compare -Wno-unused-value\ - -Wno-parentheses-equality -Wno-unused-function + -Wno-parentheses-equality -Wno-unused-function\ + -Wno-conversion . endif . if ${WARNS} <= 2 CWARNFLAGS += -Wno-switch-enum |