Add a --no-revalued option

This commit is contained in:
John Wiegley 2015-05-05 13:26:49 -05:00
parent 974da27ed4
commit c586e1e494
2 changed files with 5 additions and 0 deletions

View file

@ -1198,6 +1198,7 @@ option_t<report_t> * report_t::lookup_option(const char * p)
OPT_CH(collapse);
else OPT(no_color);
else OPT(no_pager);
else OPT(no_revalued);
else OPT(no_rounding);
else OPT(no_titles);
else OPT(no_total);

View file

@ -764,6 +764,10 @@ public:
OTHER(color).off();
});
OPTION_(report_t, no_revalued, DO() {
OTHER(revalued).off();
});
OPTION(report_t, no_rounding);
OPTION(report_t, no_titles);
OPTION(report_t, no_total);