diff options
Diffstat (limited to 'src/times.cc')
-rw-r--r-- | src/times.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/times.cc b/src/times.cc index a7906aee..60e8e7cc 100644 --- a/src/times.cc +++ b/src/times.cc @@ -333,10 +333,12 @@ date_t date_specifier_t::begin(const optional_year& current_year) const month_type the_month = month ? *month : date_t::month_type(1); day_type the_day = day ? *day : date_t::day_type(1); +#if !defined(NO_ASSERTS) if (day) assert(! wday); else if (wday) assert(! day); +#endif // jww (2009-11-16): Handle wday. If a month is set, find the most recent // wday in that month; if the year is set, then in that year. |