Merge pull request #422 from jwakely/issue-417
Convert boost::optional objects to bool explicitly.
This commit is contained in:
commit
21c3569a70
5 changed files with 5 additions and 21 deletions
|
|
@ -261,11 +261,7 @@ public:
|
|||
mutable optional<xdata_t> xdata_;
|
||||
|
||||
bool has_xdata() const {
|
||||
#if BOOST_VERSION >= 105600
|
||||
return xdata_ != NULL;
|
||||
#else
|
||||
return xdata_;
|
||||
#endif
|
||||
return static_cast<bool>(xdata_);
|
||||
}
|
||||
void clear_xdata();
|
||||
xdata_t& xdata() {
|
||||
|
|
|
|||
|
|
@ -174,11 +174,7 @@ public:
|
|||
static bool use_aux_date;
|
||||
|
||||
virtual bool has_date() const {
|
||||
#if BOOST_VERSION >= 105600
|
||||
return _date != NULL;
|
||||
#else
|
||||
return _date;
|
||||
#endif
|
||||
return static_cast<bool>(_date);
|
||||
}
|
||||
|
||||
virtual date_t date() const {
|
||||
|
|
|
|||
|
|
@ -118,7 +118,7 @@ public:
|
|||
|
||||
ptr_op_t parse(std::istream& in,
|
||||
const parse_flags_t& flags = PARSE_DEFAULT,
|
||||
const optional<string>& original_string = NULL);
|
||||
const optional<string>& original_string = boost::none);
|
||||
};
|
||||
|
||||
} // namespace ledger
|
||||
|
|
|
|||
|
|
@ -205,11 +205,7 @@ public:
|
|||
mutable optional<xdata_t> xdata_;
|
||||
|
||||
bool has_xdata() const {
|
||||
#if BOOST_VERSION >= 105600
|
||||
return xdata_ != NULL;
|
||||
#else
|
||||
return xdata_;
|
||||
#endif
|
||||
return static_cast<bool>(xdata_);
|
||||
}
|
||||
void clear_xdata() {
|
||||
xdata_ = none;
|
||||
|
|
|
|||
|
|
@ -500,11 +500,7 @@ public:
|
|||
void stabilize(const optional<date_t>& date = none);
|
||||
|
||||
bool is_valid() const {
|
||||
#if BOOST_VERSION >= 105600
|
||||
return start != NULL;
|
||||
#else
|
||||
return start;
|
||||
#endif
|
||||
return static_cast<bool>(start);
|
||||
}
|
||||
|
||||
/** Find the current or next period containing date. Returns false if
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue