Inlined the print_xacts constructor
This commit is contained in:
parent
d6a559959c
commit
17b29a6378
2 changed files with 4 additions and 8 deletions
|
|
@ -40,13 +40,6 @@
|
|||
|
||||
namespace ledger {
|
||||
|
||||
print_xacts::print_xacts(report_t& _report,
|
||||
bool _print_raw)
|
||||
: report(_report), print_raw(_print_raw), first_title(true)
|
||||
{
|
||||
TRACE_CTOR(print_xacts, "report&, bool");
|
||||
}
|
||||
|
||||
namespace {
|
||||
void print_note(std::ostream& out,
|
||||
const string& note,
|
||||
|
|
|
|||
|
|
@ -65,7 +65,10 @@ protected:
|
|||
bool first_title;
|
||||
|
||||
public:
|
||||
print_xacts(report_t& _report, bool _print_raw = false);
|
||||
print_xacts(report_t& _report, bool _print_raw = false)
|
||||
: report(_report), print_raw(_print_raw), first_title(true) {
|
||||
TRACE_CTOR(print_xacts, "report&, bool");
|
||||
}
|
||||
virtual ~print_xacts() {
|
||||
TRACE_DTOR(print_xacts);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue