summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-11-13 01:48:32 -0500
committerJohn Wiegley <johnw@newartisans.com>2009-11-13 01:48:32 -0500
commit2986bc779e055fe8bd3511994c539d65d3a7aa57 (patch)
tree71a93ea1eaf17901ebf89fe0556e87ab7ec6db50 /src
parentf50ea971ef12929d015657f22942b1cc0e328165 (diff)
downloadfork-ledger-2986bc779e055fe8bd3511994c539d65d3a7aa57.tar.gz
fork-ledger-2986bc779e055fe8bd3511994c539d65d3a7aa57.tar.bz2
fork-ledger-2986bc779e055fe8bd3511994c539d65d3a7aa57.zip
Stylistic change: assert(0) -> assert(false)
Diffstat (limited to 'src')
-rw-r--r--src/draft.h2
-rw-r--r--src/query.cc2
-rw-r--r--src/query.h4
-rw-r--r--src/times.cc8
-rw-r--r--src/times.h4
-rw-r--r--src/value.cc2
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;