raw_fd_ostream Flags parameter no longer defaulted

...at least on trunk r202077.

Change-Id: Ieb59cc7ac70e2a57ac13eefdfcbb6bfa42e25218
This commit is contained in:
Stephan Bergmann
2014-02-25 08:47:47 +01:00
parent 1c51811a43
commit 35f28b706e

View File

@@ -224,7 +224,7 @@ void PluginHandler::HandleTranslationUnit( ASTContext& context )
sprintf( filename, "%s.new.%d", modifyFile.c_str(), getpid());
string error;
bool ok = false;
raw_fd_ostream ostream( filename, error );
raw_fd_ostream ostream( filename, error, sys::fs::F_None );
if( error.empty())
{
it->second.write( ostream );