From 49d79045a5ca3f8a5c9df02d9be8e25c49d4daa7 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 23 Feb 2009 15:15:33 -0400 Subject: Removed unused member keep_details_t::keep_base --- src/commodity.h | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'src/commodity.h') 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"); } -- cgit v1.2.3