Internal change

PiperOrigin-RevId: 206652744
This commit is contained in:
MLIR Team 2018-07-30 15:00:47 -07:00 committed by jpienaar
parent d48790cc52
commit fe7356c43b

View file

@ -70,8 +70,8 @@ enum OptResult { OptSuccess, OptFailure };
/// other errors.
static std::unique_ptr<ToolOutputFile> getOutputStream() {
std::error_code error;
auto result = make_unique<ToolOutputFile>(outputFilename, error,
sys::fs::F_None);
auto result =
llvm::make_unique<ToolOutputFile>(outputFilename, error, sys::fs::F_None);
if (error) {
llvm::errs() << error.message() << '\n';
exit(1);