From c586e1e494487c43cf6da886739f69bb91a7e15b Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Tue, 5 May 2015 13:26:49 -0500 Subject: Add a --no-revalued option --- src/report.cc | 1 + src/report.h | 4 ++++ 2 files changed, 5 insertions(+) (limited to 'src') diff --git a/src/report.cc b/src/report.cc index 2ce70151..ac08c247 100644 --- a/src/report.cc +++ b/src/report.cc @@ -1198,6 +1198,7 @@ option_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); diff --git a/src/report.h b/src/report.h index c54c8444..10afbe6f 100644 --- a/src/report.h +++ b/src/report.h @@ -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); -- cgit v1.2.3