summaryrefslogtreecommitdiff
path: root/src/chain.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/chain.h')
-rw-r--r--src/chain.h10
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;