1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-04-16 20:40:16 +00:00

Add missing std:: qualifiers

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203246 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dmitri Gribenko 2014-03-07 14:55:30 +00:00
parent a6a3d4dc36
commit 8eccde8617

@ -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