diff options
Diffstat (limited to 'compilerplugins/clang/constantparam.py')
-rwxr-xr-x | compilerplugins/clang/constantparam.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/constantparam.py b/compilerplugins/clang/constantparam.py index 97dada368d60..5a1ae85e1192 100755 --- a/compilerplugins/clang/constantparam.py +++ b/compilerplugins/clang/constantparam.py @@ -13,7 +13,7 @@ def normalizeTypeParams( line ): return normalizeTypeParamsRegex.sub("type-parameter-?-?", line) # reading as binary (since we known it is pure ascii) is much faster than reading as unicode -with io.open("loplugin.constantparam.log", "rb", buffering=1024*1024) as txt: +with io.open("workdir/loplugin.constantparam.log", "rb", buffering=1024*1024) as txt: for line in txt: try: tokens = line.strip().split("\t") |