Kaydet (Commit) 35f28b70 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

raw_fd_ostream Flags parameter no longer defaulted

...at least on trunk r202077.

Change-Id: Ieb59cc7ac70e2a57ac13eefdfcbb6bfa42e25218
üst 1c51811a
...@@ -224,7 +224,7 @@ void PluginHandler::HandleTranslationUnit( ASTContext& context ) ...@@ -224,7 +224,7 @@ void PluginHandler::HandleTranslationUnit( ASTContext& context )
sprintf( filename, "%s.new.%d", modifyFile.c_str(), getpid()); sprintf( filename, "%s.new.%d", modifyFile.c_str(), getpid());
string error; string error;
bool ok = false; bool ok = false;
raw_fd_ostream ostream( filename, error ); raw_fd_ostream ostream( filename, error, sys::fs::F_None );
if( error.empty()) if( error.empty())
{ {
it->second.write( ostream ); it->second.write( ostream );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment