Skip to content

Commit

Permalink
Add missing namespace qualifier.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@296397 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Zachary Turner committed Feb 27, 2017
1 parent 27f4f2f commit 533bd5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/llvm/DebugInfo/MSF/BinaryStreamReader.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class BinaryStreamReader {
}

if (NumElements > UINT32_MAX / sizeof(T))
return make_error<MSFError>(msf_error_code::insufficient_buffer);
return make_error<msf::MSFError>(msf::msf_error_code::insufficient_buffer);

if (auto EC = readBytes(Bytes, NumElements * sizeof(T)))
return EC;
Expand Down

0 comments on commit 533bd5a

Please sign in to comment.