diff options
Diffstat (limited to 'src/commodity.h')
-rw-r--r-- | src/commodity.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/commodity.h b/src/commodity.h index 2962152a..d2c778c2 100644 --- a/src/commodity.h +++ b/src/commodity.h @@ -408,22 +408,19 @@ struct keep_details_t bool keep_price; bool keep_date; bool keep_tag; - bool keep_base; explicit keep_details_t(bool _keep_price = false, bool _keep_date = false, - bool _keep_tag = false, - bool _keep_base = false) + bool _keep_tag = false) : keep_price(_keep_price), keep_date(_keep_date), - keep_tag(_keep_tag), - keep_base(_keep_base) + keep_tag(_keep_tag) { - TRACE_CTOR(keep_details_t, "bool, bool, bool, bool"); + TRACE_CTOR(keep_details_t, "bool, bool, bool"); } keep_details_t(const keep_details_t& other) : keep_price(other.keep_price), keep_date(other.keep_date), - keep_tag(other.keep_tag), keep_base(other.keep_base) { + keep_tag(other.keep_tag) { TRACE_CTOR(keep_details_t, "copy"); } |