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:
Noel Grandin
2017-06-20 10:26:46 +02:00
parent 03ee996717
commit 4c0198b02c
22 changed files with 341 additions and 360 deletions

View File

@@ -82,8 +82,8 @@ public:
output += "deletedInDestructor:\t" + s.parentClass + "\t" + s.fieldName + "\n";
for (const MyFieldInfo & s : newedInConstructorSet)
output += "newedInConstructor:\t" + s.parentClass + "\t" + s.fieldName + "\n";
ofstream myfile;
myfile.open( SRCDIR "/loplugin.inlinefields.log", ios::app | ios::out);
std::ofstream myfile;
myfile.open( SRCDIR "/loplugin.inlinefields.log", std::ios::app | std::ios::out);
myfile << output;
myfile.close();
}