initialize member variables of posts_to_org_table
This fixes test/baseline/cmd-org.test when built with clang.
This commit is contained in:
parent
b98662e713
commit
e0ee1eb810
1 changed files with 2 additions and 1 deletions
|
|
@ -43,7 +43,8 @@ namespace ledger {
|
|||
|
||||
posts_to_org_table::posts_to_org_table(report_t& _report,
|
||||
const optional<string>& _prepend_format)
|
||||
: report(_report), last_xact(NULL), last_post(NULL)
|
||||
: report(_report), last_xact(NULL), last_post(NULL),
|
||||
header_printed(false), first_report_title(true)
|
||||
{
|
||||
first_line_format.parse_format
|
||||
("|%(format_date(date))"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue