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/lib/Bitcode/Reader/BitcodeReader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Bitcode/Reader/BitcodeReader.cpp') diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 19528c8..ab0a124 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -3257,7 +3257,7 @@ error_code BitcodeReader::InitLazyStream() { } namespace { -class BitcodeErrorCategoryType : public _do_message { +class BitcodeErrorCategoryType : public error_category { const char *name() const override { return "llvm.bitcode"; } -- cgit v1.1