diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-11 16:03:50 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-11 17:02:25 -0400 |
commit | dea2aed0b509734ec4e1cd163ac2a4f013000da2 (patch) | |
tree | 7908da76c67ae5172882306a319bf26df81b73b4 /src/chain.h | |
parent | d580079df892c30d023b3211d6c4611c17b11f8f (diff) | |
download | fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.tar.gz fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.tar.bz2 fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.zip |
Untabified all source files
Diffstat (limited to 'src/chain.h')
-rw-r--r-- | src/chain.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/chain.h b/src/chain.h index 1a50a077..7bd76712 100644 --- a/src/chain.h +++ b/src/chain.h @@ -94,17 +94,17 @@ class report_t; post_handler_ptr chain_pre_post_handlers(post_handler_ptr base_handler, - report_t& report); + report_t& report); post_handler_ptr chain_post_handlers(post_handler_ptr base_handler, - report_t& report, - bool for_accounts_report = false); + report_t& report, + bool for_accounts_report = false); inline post_handler_ptr chain_handlers(post_handler_ptr handler, - report_t& report, - bool for_accounts_report = false) { + report_t& report, + bool for_accounts_report = false) { handler = chain_post_handlers(handler, report, for_accounts_report); handler = chain_pre_post_handlers(handler, report); return handler; |