compilerplugins/clang/countusersofdefaultparams.py | 2 -- compilerplugins/clang/expandablemethods.py | 2 -- compilerplugins/clang/unusedenumconstants.py | 2 -- compilerplugins/clang/unusedfields.py | 2 -- compilerplugins/clang/unusedmethods.py | 2 -- 5 files changed, 10 deletions(-)
New commits: commit f0348fb4bfa9586ff75b0495c221c0eac9359615 Author: Noel Grandin <noel.gran...@collabora.co.uk> Date: Thu Aug 17 16:35:57 2017 +0200 these comments no longer valid Change-Id: I263116383a9342f9600d6cd1622a941afe83634e diff --git a/compilerplugins/clang/countusersofdefaultparams.py b/compilerplugins/clang/countusersofdefaultparams.py index 1930eeebf108..a790abfcbd76 100755 --- a/compilerplugins/clang/countusersofdefaultparams.py +++ b/compilerplugins/clang/countusersofdefaultparams.py @@ -13,8 +13,6 @@ normalizeTypeParamsRegex = re.compile(r"type-parameter-\d+-\d+") def normalizeTypeParams( line ): return normalizeTypeParamsRegex.sub("type-parameter-?-?", line) -# 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.countusersofdefaultparams.log", "rb", buffering=1024*1024) as txt: for line in txt: tokens = line.strip().split("\t") diff --git a/compilerplugins/clang/expandablemethods.py b/compilerplugins/clang/expandablemethods.py index ac97c2b08699..934a5f6580ed 100755 --- a/compilerplugins/clang/expandablemethods.py +++ b/compilerplugins/clang/expandablemethods.py @@ -25,8 +25,6 @@ def normalizeTypeParams( line ): # primary input loop # -------------------------------------------------------------------------------------------- -# 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.expandablemethods.log", "rb", buffering=1024*1024) as txt: for line in txt: tokens = line.strip().split("\t") 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") diff --git a/compilerplugins/clang/unusedfields.py b/compilerplugins/clang/unusedfields.py index 96cfbe879bd2..09779eb71571 100755 --- a/compilerplugins/clang/unusedfields.py +++ b/compilerplugins/clang/unusedfields.py @@ -26,8 +26,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.unusedfields.log", "rb", buffering=1024*1024) as txt: for line in txt: tokens = line.strip().split("\t") diff --git a/compilerplugins/clang/unusedmethods.py b/compilerplugins/clang/unusedmethods.py index 8ba1e79efed3..fc3b1ab518dc 100755 --- a/compilerplugins/clang/unusedmethods.py +++ b/compilerplugins/clang/unusedmethods.py @@ -113,8 +113,6 @@ def normalizeTypeParams( line ): # primary input loop # -------------------------------------------------------------------------------------------- -# 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.unusedmethods.log", "rb", buffering=1024*1024) as txt: for line in txt: tokens = line.strip().split("\t") _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits