diff options
author | John Wiegley <johnw@newartisans.com> | 2012-03-05 17:46:42 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-03-05 17:46:42 -0600 |
commit | b6adc8f4605befc2e6a91dfa28cc9237fb391fbc (patch) | |
tree | 2b6858bca43af8dca6c4569e2c14d34e1396b9d4 /src/report.cc | |
parent | 477a9106e3788b33863a7701466860eb5f9682e3 (diff) | |
download | ledger-b6adc8f4605befc2e6a91dfa28cc9237fb391fbc.tar.gz ledger-b6adc8f4605befc2e6a91dfa28cc9237fb391fbc.tar.bz2 ledger-b6adc8f4605befc2e6a91dfa28cc9237fb391fbc.zip |
Use unique_ptr instead of std::auto_ptr
Diffstat (limited to 'src/report.cc')
-rw-r--r-- | src/report.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/report.cc b/src/report.cc index 90f482cc..b86f77eb 100644 --- a/src/report.cc +++ b/src/report.cc @@ -309,7 +309,7 @@ void report_t::posts_report(post_handler_ptr handler) { handler = chain_post_handlers(handler, *this); if (HANDLED(group_by_)) { - std::auto_ptr<post_splitter> + unique_ptr<post_splitter> splitter(new post_splitter(handler, *this, HANDLER(group_by_).expr)); splitter->set_postflush_func(posts_flusher(handler, *this)); handler = post_handler_ptr(splitter.release()); |