summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/mergeclasses.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-07-25 13:22:38 +0200
committerNoel Grandin <noel@peralex.com>2016-07-25 13:23:10 +0200
commit98c90acdfc9813ad8789974df1705e0a240194fd (patch)
treed54f477ef6c814e7ffc06c24f3b5e286ba230f3f /compilerplugins/clang/mergeclasses.cxx
parent0b8e589875ffd84150470832de18ebd79989efc0 (diff)
loplugins: more consistent naming of output files
Change-Id: Ia26f697cb16078f235c94e4cff449a60c1bbd74e
Diffstat (limited to 'compilerplugins/clang/mergeclasses.cxx')
-rw-r--r--compilerplugins/clang/mergeclasses.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/clang/mergeclasses.cxx b/compilerplugins/clang/mergeclasses.cxx
index 652e25310e28..20f3dc288ec3 100644
--- a/compilerplugins/clang/mergeclasses.cxx
+++ b/compilerplugins/clang/mergeclasses.cxx
@@ -32,7 +32,7 @@ Then
The process goes something like this:
$ make check
$ make FORCE_COMPILE_ALL=1 COMPILER_PLUGIN_TOOL='mergeclasses' check
- $ ./compilerplugins/clang/mergeclasses.py > mergeclasses.results
+ $ ./compilerplugins/clang/mergeclasses.py
FIXME exclude 'static-only' classes, which some people may use/have used instead of a namespace to tie together a bunch of functions
@@ -65,7 +65,7 @@ public:
for (const std::pair<std::string,std::string> & s : definitionMap)
output += "definition:\t" + s.first + "\t" + s.second + "\n";
ofstream myfile;
- myfile.open( SRCDIR "/mergeclasses.log", ios::app | ios::out);
+ myfile.open( SRCDIR "/loplugin.mergeclasses.log", ios::app | ios::out);
myfile << output;
myfile.close();
}