[lld] r210629 - Missed these from the previous commit.
Rafael Espindola
rafael.espindola at gmail.com
Tue Jun 10 20:35:50 PDT 2014
Author: rafael
Date: Tue Jun 10 22:35:50 2014
New Revision: 210629
URL: http://llvm.org/viewvc/llvm-project?rev=210629&view=rev
Log:
Missed these from the previous commit.
Modified:
lld/trunk/lib/Core/Error.cpp
Modified: lld/trunk/lib/Core/Error.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/Core/Error.cpp?rev=210629&r1=210628&r2=210629&view=diff
==============================================================================
--- lld/trunk/lib/Core/Error.cpp (original)
+++ lld/trunk/lib/Core/Error.cpp Tue Jun 10 22:35:50 2014
@@ -18,7 +18,7 @@
using namespace lld;
-class _NativeReaderErrorCategory : public llvm::_do_message {
+class _NativeReaderErrorCategory : public llvm::error_category {
public:
const char* name() const LLVM_NOEXCEPT override {
return "lld.native.reader";
@@ -54,7 +54,7 @@ const llvm::error_category &lld::native_
return o;
}
-class _YamlReaderErrorCategory : public llvm::_do_message {
+class _YamlReaderErrorCategory : public llvm::error_category {
public:
const char* name() const LLVM_NOEXCEPT override {
return "lld.yaml.reader";
More information about the llvm-commits
mailing list