diff options
-rw-r--r-- | src/draft.h | 2 | ||||
-rw-r--r-- | src/query.cc | 2 | ||||
-rw-r--r-- | src/query.h | 4 | ||||
-rw-r--r-- | src/times.cc | 8 | ||||
-rw-r--r-- | src/times.h | 4 | ||||
-rw-r--r-- | src/value.cc | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/src/draft.h b/src/draft.h index 277b4ff8..003dcefa 100644 --- a/src/draft.h +++ b/src/draft.h @@ -93,7 +93,7 @@ public: void parse_args(const value_t& args); virtual result_type real_calc(scope_t&) { - assert(0); + assert(false); return true; } diff --git a/src/query.cc b/src/query.cc index de1c5631..21304f92 100644 --- a/src/query.cc +++ b/src/query.cc @@ -333,7 +333,7 @@ query_t::parser_t::parse_query_term(query_t::lexer_t::token_t::kind_t tok_contex case lexer_t::token_t::TOK_NOTE: ident->set_ident("note"); break; default: - assert(0); break; + assert(false); break; } expr_t::ptr_op_t mask = new expr_t::op_t(expr_t::op_t::VALUE); diff --git a/src/query.h b/src/query.h index e3545396..73639263 100644 --- a/src/query.h +++ b/src/query.h @@ -157,12 +157,12 @@ public: case END_REACHED: return "<EOF>"; case TERM: - assert(0); + assert(false); return "<TERM>"; case UNKNOWN: default: - assert(0); + assert(false); return "<UNKNOWN>"; } } diff --git a/src/times.cc b/src/times.cc index b737b2a0..6afbab0a 100644 --- a/src/times.cc +++ b/src/times.cc @@ -789,8 +789,8 @@ std::string format_datetime(const datetime_t& when, return printed_datetime_io->format(when); } else { - assert(0); - return ""; + assert(false); + return empty_string; } } @@ -815,8 +815,8 @@ std::string format_date(const date_t& when, return printed_date_io->format(when); } else { - assert(0); - return ""; + assert(false); + return empty_string; } } diff --git a/src/times.h b/src/times.h index 3cd359d2..77f25d9e 100644 --- a/src/times.h +++ b/src/times.h @@ -174,7 +174,7 @@ public: case YEARS: return date + gregorian::years(length); default: - assert(0); return date_t(); + assert(false); return date_t(); } } @@ -189,7 +189,7 @@ public: case YEARS: return date - gregorian::years(length); default: - assert(0); return date_t(); + assert(false); return date_t(); } } diff --git a/src/value.cc b/src/value.cc index 910a9140..ce852c2d 100644 --- a/src/value.cc +++ b/src/value.cc @@ -696,7 +696,7 @@ value_t& value_t::operator/=(const value_t& val) as_amount_lval() /= simpler.as_amount(); break; default: - assert(0); + assert(false); break; } return *this; |