reformat some loplugin code
to match our more normal conventions. Also drop the 'using std' and some other cruft Change-Id: I02ef81c5427188bc03a20b157a57a900a9d7bf0d
This commit is contained in:
@@ -65,8 +65,8 @@ public:
|
||||
output += "has-subclass:\t" + s.first + "\t" + s.second + "\n";
|
||||
for (const std::pair<std::string,std::string> & s : definitionMap)
|
||||
output += "definition:\t" + s.first + "\t" + s.second + "\n";
|
||||
ofstream myfile;
|
||||
myfile.open( SRCDIR "/loplugin.mergeclasses.log", ios::app | ios::out);
|
||||
std::ofstream myfile;
|
||||
myfile.open( SRCDIR "/loplugin.mergeclasses.log", std::ios::app | std::ios::out);
|
||||
myfile << output;
|
||||
myfile.close();
|
||||
}
|
||||
|
Reference in New Issue
Block a user