diff options
Diffstat (limited to 'src/account.h')
-rw-r--r-- | src/account.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/account.h b/src/account.h index 4a4e859d..0abbd87a 100644 --- a/src/account.h +++ b/src/account.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003-2016, John Wiegley. All rights reserved. + * Copyright (c) 2003-2018, John Wiegley. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are @@ -205,7 +205,9 @@ public: posts_cleared_count(0), posts_last_7_count(0), posts_last_30_count(0), - posts_this_month_count(0) { + posts_this_month_count(0), + latest_checkout_cleared(false) + { TRACE_CTOR(account_t::xdata_t::details_t, ""); } // A copy copies nothing @@ -218,7 +220,8 @@ public: posts_cleared_count(0), posts_last_7_count(0), posts_last_30_count(0), - posts_this_month_count(0) + posts_this_month_count(0), + latest_checkout_cleared(false) { TRACE_CTOR(account_t::xdata_t::details_t, "copy"); } |