summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/countusersofdefaultparams.py
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/countusersofdefaultparams.py')
-rwxr-xr-xcompilerplugins/clang/countusersofdefaultparams.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/countusersofdefaultparams.py b/compilerplugins/clang/countusersofdefaultparams.py
index c36f91b36dbb..06c38b9e4807 100755
--- a/compilerplugins/clang/countusersofdefaultparams.py
+++ b/compilerplugins/clang/countusersofdefaultparams.py
@@ -15,7 +15,7 @@ def normalizeTypeParams( line ):
line = normalizeTypeParamsRegex1.sub("type-parameter-?-?", line)
return normalizeTypeParamsRegex2.sub("type-parameter-?-?", line)
-with io.open("loplugin.countusersofdefaultparams.log", "rb", buffering=1024*1024) as txt:
+with io.open("workdir/loplugin.countusersofdefaultparams.log", "rb", buffering=1024*1024) as txt:
for line in txt:
tokens = line.strip().split("\t")
if tokens[0] == "defn:":