Add a --no-revalued option
This commit is contained in:
parent
974da27ed4
commit
c586e1e494
2 changed files with 5 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue