[lld] r203244 - Add missing std:: qualifiers.

Benjamin Kramer benny.kra at googlemail.com
Fri Mar 7 06:50:15 PST 2014


Author: d0k
Date: Fri Mar  7 08:50:15 2014
New Revision: 203244

URL: http://llvm.org/viewvc/llvm-project?rev=203244&view=rev
Log:
Add missing std:: qualifiers.

Modified:
    lld/trunk/include/lld/Core/Error.h

Modified: lld/trunk/include/lld/Core/Error.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/include/lld/Core/Error.h?rev=203244&r1=203243&r2=203244&view=diff
==============================================================================
--- lld/trunk/include/lld/Core/Error.h (original)
+++ lld/trunk/include/lld/Core/Error.h Fri Mar  7 08:50:15 2014
@@ -86,12 +86,13 @@ inline llvm::error_code make_error_code(
 
 namespace llvm {
 
-template <> struct is_error_code_enum<lld::NativeReaderError> : true_type {};
-template <> struct is_error_code_enum<lld::YamlReaderError> : true_type {};
 template <>
-struct is_error_code_enum<lld::LinkerScriptReaderError> : true_type {};
-template <> struct is_error_code_enum<lld::InputGraphError> : true_type {};
-template <> struct is_error_code_enum<lld::ReaderError> : true_type {};
+struct is_error_code_enum<lld::NativeReaderError> : std::true_type {};
+template <> struct is_error_code_enum<lld::YamlReaderError> : std::true_type {};
+template <>
+struct is_error_code_enum<lld::LinkerScriptReaderError> : std::true_type {};
+template <> struct is_error_code_enum<lld::InputGraphError> : std::true_type {};
+template <> struct is_error_code_enum<lld::ReaderError> : std::true_type {};
 } // end namespace llvm
 
 #endif





More information about the llvm-commits mailing list