summaryrefslogtreecommitdiff
path: root/include
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 /include
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 'include')
-rw-r--r--include/llvm/Support/system_error.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/system_error.h b/include/llvm/Support/system_error.h
index 046132f859..4ca4b06974 100644
--- a/include/llvm/Support/system_error.h
+++ b/include/llvm/Support/system_error.h
@@ -628,8 +628,8 @@ class error_category
public:
virtual ~error_category();
-private:
error_category();
+private:
error_category(const error_category&) LLVM_DELETED_FUNCTION;
error_category& operator=(const error_category&) LLVM_DELETED_FUNCTION;