summaryrefslogtreecommitdiff
path: root/tools/llvm-readobj
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2014-03-15 04:05:59 +0000
committerJustin Bogner <mail@justinbogner.com>2014-03-15 04:05:59 +0000
commitc0a42c263e1cf8f3d3cd69afec9c4264d23c616c (patch)
tree4b9594a610d54d0138b4384be990deea069ceb24 /tools/llvm-readobj
parent8e85e5017092090c01b72f6ab57c7c3f1b73a235 (diff)
downloadllvm-c0a42c263e1cf8f3d3cd69afec9c4264d23c616c.tar.gz
llvm-c0a42c263e1cf8f3d3cd69afec9c4264d23c616c.tar.bz2
llvm-c0a42c263e1cf8f3d3cd69afec9c4264d23c616c.tar.xz
Support: Make error_category's constructor public
Since our error_category is based on the std one, we should have the same visibility for the constructor. This also allows us to avoid using the _do_message implementation detail in our own categories. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203998 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-readobj')
-rw-r--r--tools/llvm-readobj/Error.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-readobj/Error.cpp b/tools/llvm-readobj/Error.cpp
index 1aed92bc8d..83ed6a7dfc 100644
--- a/tools/llvm-readobj/Error.cpp
+++ b/tools/llvm-readobj/Error.cpp
@@ -17,7 +17,7 @@
using namespace llvm;
namespace {
-class _readobj_error_category : public _do_message {
+class _readobj_error_category : public error_category {
public:
const char* name() const override;
std::string message(int ev) const override;