summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2015-04-09 14:44:37 (GMT)
committerTobias Markmann <tm@ayena.de>2015-04-09 14:44:37 (GMT)
commit89e5dd08171366ccfb1f598e6e5f140a166b0680 (patch)
tree346debc581680ff2cd2a3c0ed2aa4b5f5fecc568 /BuildTools
parent865ad6a0d605d6cfce1d4503c97f6a66f201f19b (diff)
downloadswift-89e5dd08171366ccfb1f598e6e5f140a166b0680.zip
swift-89e5dd08171366ccfb1f598e6e5f140a166b0680.tar.bz2
Disable documentation-unknown-command warnings in clang
Test-Information: Tested on OS X 10.9.5 with Clang 3.7.0. Change-Id: Ic3a5ec77ca488c1688da35f75dd7424f8f59784b
Diffstat (limited to 'BuildTools')
-rw-r--r--BuildTools/SCons/SConscript.boot1
1 files changed, 1 insertions, 0 deletions
diff --git a/BuildTools/SCons/SConscript.boot b/BuildTools/SCons/SConscript.boot
index 1455962..79d5fe8 100644
--- a/BuildTools/SCons/SConscript.boot
+++ b/BuildTools/SCons/SConscript.boot
@@ -304,6 +304,7 @@ else :
"-Wno-weak-vtables", # Virtually none of our elements have outlined methods. This also seems to affect classes in .cpp files, which in turn affects all our tests, which may need fixing in CLang
"-Wno-shadow", # Also warns for shadowing on constructor arguments, which we do a lot
"-Wno-documentation", # We don't care about documentation warnings
+ "-Wno-documentation-unknown-command", # We don't care about documentation warnings
"-Wno-exit-time-destructors", # Used a lot in e.g. CPPUnit
"-Wno-c++98-compat-pedantic", # We do different things that violate this, but they could be fixed
"-Wno-global-constructors", # We depend on this for e.g. string constants