summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/unusedenumconstants.py
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-08-17 16:35:57 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-08-17 16:52:32 +0200
commitf0348fb4bfa9586ff75b0495c221c0eac9359615 (patch)
treefe4002938be1ab67866af38aa556e3cc52ec0101 /compilerplugins/clang/unusedenumconstants.py
parent139be0f4c898c926f9bb5954d0054e8617b6fd21 (diff)
these comments no longer valid
Change-Id: I263116383a9342f9600d6cd1622a941afe83634e
Diffstat (limited to 'compilerplugins/clang/unusedenumconstants.py')
-rwxr-xr-xcompilerplugins/clang/unusedenumconstants.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/compilerplugins/clang/unusedenumconstants.py b/compilerplugins/clang/unusedenumconstants.py
index 184a3fc0d57b..584e8d529c26 100755
--- a/compilerplugins/clang/unusedenumconstants.py
+++ b/compilerplugins/clang/unusedenumconstants.py
@@ -22,8 +22,6 @@ def parseFieldInfo( tokens ):
else:
return (normalizeTypeParams(tokens[1]), "")
-# The parsing here is designed to avoid grabbing stuff which is mixed in from gbuild.
-# I have not yet found a way of suppressing the gbuild output.
with io.open("loplugin.unusedenumconstants.log", "rb", buffering=1024*1024) as txt:
for line in txt:
tokens = line.strip().split("\t")