diff options
Diffstat (limited to 'llvm/lib/Support/FileOutputBuffer.cpp')
-rw-r--r-- | llvm/lib/Support/FileOutputBuffer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/FileOutputBuffer.cpp b/llvm/lib/Support/FileOutputBuffer.cpp index b869054..c8ed1dd 100644 --- a/llvm/lib/Support/FileOutputBuffer.cpp +++ b/llvm/lib/Support/FileOutputBuffer.cpp @@ -51,7 +51,7 @@ error_code FileOutputBuffer::create(StringRef FilePath, if (EC) return EC; else - return make_error_code(std::errc::operation_not_permitted); + return std::make_error_code(std::errc::operation_not_permitted); } // Delete target file. |