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/main.cc | |
parent | 477a9106e3788b33863a7701466860eb5f9682e3 (diff) | |
download | fork-ledger-b6adc8f4605befc2e6a91dfa28cc9237fb391fbc.tar.gz fork-ledger-b6adc8f4605befc2e6a91dfa28cc9237fb391fbc.tar.bz2 fork-ledger-b6adc8f4605befc2e6a91dfa28cc9237fb391fbc.zip |
Use unique_ptr instead of std::auto_ptr
Diffstat (limited to 'src/main.cc')
-rw-r--r-- | src/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cc b/src/main.cc index aafbdbcb..dd03206f 100644 --- a/src/main.cc +++ b/src/main.cc @@ -80,7 +80,7 @@ int main(int argc, char * argv[], char * envp[]) ::textdomain("ledger"); #endif - std::auto_ptr<global_scope_t> global_scope; + unique_ptr<global_scope_t> global_scope; try { // Create the session object, which maintains nearly all state relating to |