From da74795f5b877dd83d12b19fdb90171baddccb68 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Tue, 3 Jun 2014 04:54:15 +0000 Subject: [PATCH] Make this operator bool() explicit to match the standard library. llvm-svn: 210073 --- llvm/include/llvm/Support/system_error.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/llvm/include/llvm/Support/system_error.h b/llvm/include/llvm/Support/system_error.h index 8b3d9cc..104cbc4 100644 --- a/llvm/include/llvm/Support/system_error.h +++ b/llvm/include/llvm/Support/system_error.h @@ -692,12 +692,7 @@ public: const error_category& category() const {return *_cat_;} std::string message() const; - typedef void (*unspecified_bool_type)(); - static void unspecified_bool_true() {} - - operator unspecified_bool_type() const { // true if error - return _val_ == 0 ? nullptr : unspecified_bool_true; - } + LLVM_EXPLICIT operator bool() const { return _val_ != 0; } }; inline error_condition make_error_condition(errc _e) { -- 2.7.4