summaryrefslogtreecommitdiff
path: root/lib/Bitcode
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 /lib/Bitcode
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 'lib/Bitcode')
-rw-r--r--lib/Bitcode/Reader/BitcodeReader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bitcode/Reader/BitcodeReader.cpp b/lib/Bitcode/Reader/BitcodeReader.cpp
index 19528c8e67..ab0a1249f2 100644
--- a/lib/Bitcode/Reader/BitcodeReader.cpp
+++ b/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";
}