From e3bfdc4e14bedf433b838963d6936dcc2fceb511 Mon Sep 17 00:00:00 2001 From: Justin Bogner Date: Sat, 15 Mar 2014 04:05:59 +0000 Subject: 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. llvm-svn: 203998 --- llvm/tools/llvm-readobj/Error.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/tools/llvm-readobj') diff --git a/llvm/tools/llvm-readobj/Error.cpp b/llvm/tools/llvm-readobj/Error.cpp index 1aed92bc8dd..83ed6a7dfc0 100644 --- a/llvm/tools/llvm-readobj/Error.cpp +++ b/llvm/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; -- cgit v1.2.3