From 66635f023585a0603436a2c54725aa61ab42b8ee Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Tue, 3 May 2016 00:53:16 +0000 Subject: [PATCH] Change operation_not_supported to not_supported. Apparently operation_not_supported is... not supported everywhere. llvm-svn: 268348 --- llvm/lib/DebugInfo/PDB/Raw/MappedBlockStream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/DebugInfo/PDB/Raw/MappedBlockStream.cpp b/llvm/lib/DebugInfo/PDB/Raw/MappedBlockStream.cpp index 25c28e5..81e75d7 100644 --- a/llvm/lib/DebugInfo/PDB/Raw/MappedBlockStream.cpp +++ b/llvm/lib/DebugInfo/PDB/Raw/MappedBlockStream.cpp @@ -55,5 +55,5 @@ MappedBlockStream::readBytes(uint32_t Offset, std::error_code MappedBlockStream::getArrayRef(uint32_t Offset, ArrayRef &Buffer, uint32_t Length) const { - return std::make_error_code(std::errc::operation_not_supported); + return std::make_error_code(std::errc::not_supported); } -- 2.7.4