Removed post_t::xdata_t::ptr, which is not used

This commit is contained in:
John Wiegley 2009-11-14 06:11:18 -05:00
parent d89c60f49c
commit d12c7e08c6

View file

@ -135,13 +135,11 @@ public:
date_t date; date_t date;
datetime_t datetime; datetime_t datetime;
account_t * account; account_t * account;
void * ptr;
std::list<sort_value_t> sort_values; std::list<sort_value_t> sort_values;
xdata_t() xdata_t()
: supports_flags<uint_least16_t>(), count(0), : supports_flags<uint_least16_t>(), count(0), account(NULL) {
account(NULL), ptr(NULL) {
TRACE_CTOR(post_t::xdata_t, ""); TRACE_CTOR(post_t::xdata_t, "");
} }
xdata_t(const xdata_t& other) xdata_t(const xdata_t& other)
@ -152,7 +150,6 @@ public:
count(other.count), count(other.count),
date(other.date), date(other.date),
account(other.account), account(other.account),
ptr(NULL),
sort_values(other.sort_values) sort_values(other.sort_values)
{ {
TRACE_CTOR(post_t::xdata_t, "copy"); TRACE_CTOR(post_t::xdata_t, "copy");