diff options
author | Noel Grandin <noel@peralex.com> | 2016-07-25 13:22:38 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-07-25 13:23:10 +0200 |
commit | 98c90acdfc9813ad8789974df1705e0a240194fd (patch) | |
tree | d54f477ef6c814e7ffc06c24f3b5e286ba230f3f /compilerplugins/clang/singlevalfields.cxx | |
parent | 0b8e589875ffd84150470832de18ebd79989efc0 (diff) |
loplugins: more consistent naming of output files
Change-Id: Ia26f697cb16078f235c94e4cff449a60c1bbd74e
Diffstat (limited to 'compilerplugins/clang/singlevalfields.cxx')
-rw-r--r-- | compilerplugins/clang/singlevalfields.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/singlevalfields.cxx b/compilerplugins/clang/singlevalfields.cxx index a75b52910c54..699daaada5a8 100644 --- a/compilerplugins/clang/singlevalfields.cxx +++ b/compilerplugins/clang/singlevalfields.cxx @@ -85,7 +85,7 @@ public: for (const MyFieldInfo & s : definitionSet) output += "defn:\t" + s.parentClass + "\t" + s.fieldName + "\t" + s.sourceLocation + "\n"; ofstream myfile; - myfile.open( SRCDIR "/singlevalfields.log", ios::app | ios::out); + myfile.open( SRCDIR "/loplugin.singlevalfields.log", ios::app | ios::out); myfile << output; myfile.close(); } |