summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/llvm/Support/system_error.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/llvm/Support/system_error.h b/include/llvm/Support/system_error.h
index 8b3d9cc0c7..104cbc42e5 100644
--- a/include/llvm/Support/system_error.h
+++ b/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) {