Skip to content

Commit

Permalink
Add missing std:: qualifiers
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203246 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
gribozavr committed Mar 7, 2014
1 parent a6a3d4d commit 8eccde8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/llvm-readobj/Error.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ inline error_code make_error_code(readobj_error e) {
return error_code(static_cast<int>(e), readobj_category());
}

template <> struct is_error_code_enum<readobj_error> : true_type { };
template <> struct is_error_code_enum<readobj_error::_> : true_type { };
template <> struct is_error_code_enum<readobj_error> : std::true_type { };
template <> struct is_error_code_enum<readobj_error::_> : std::true_type { };

} // namespace llvm

Expand Down

0 comments on commit 8eccde8

Please sign in to comment.