diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 11:58:49 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-06-12 11:58:49 +0000 |
commit | ed6882b8351b37c07b3ddc51e1a62d7d96135aaa (patch) | |
tree | 485a5b1c62f0d6a5d86c062dcfbe937b0dd9c9b1 /llvm/lib/Support/FileOutputBuffer.cpp | |
parent | 1f6f0f4b54c4fcb1b0e224434f066f2e62def8e9 (diff) | |
download | bcm5719-llvm-ed6882b8351b37c07b3ddc51e1a62d7d96135aaa.tar.gz bcm5719-llvm-ed6882b8351b37c07b3ddc51e1a62d7d96135aaa.zip |
Don't import make_error_code into the llvm namespace.
llvm-svn: 210772
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 b8690543388..c8ed1ddef65 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. |