diff options
Diffstat (limited to 'compilerplugins/clang/expandablemethods.cxx')
-rw-r--r-- | compilerplugins/clang/expandablemethods.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compilerplugins/clang/expandablemethods.cxx b/compilerplugins/clang/expandablemethods.cxx index a5a2dfda2278..958d563d0adb 100644 --- a/compilerplugins/clang/expandablemethods.cxx +++ b/compilerplugins/clang/expandablemethods.cxx @@ -80,8 +80,8 @@ public: output += "large:\t" + s.returnType + "\t" + s.nameAndParams + "\n"; for (const MyFuncInfo & s : addressOfSet) output += "addrof:\t" + s.returnType + "\t" + s.nameAndParams + "\n"; - ofstream myfile; - myfile.open( SRCDIR "/loplugin.expandablemethods.log", ios::app | ios::out); + std::ofstream myfile; + myfile.open( SRCDIR "/loplugin.expandablemethods.log", std::ios::app | std::ios::out); myfile << output; myfile.close(); } |