mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-04 05:31:51 +00:00
Make this operator bool() explicit to match the standard library.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210073 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
08e66be96d
commit
7d5fe32ebf
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user