diff options
author | John Wiegley <johnw@newartisans.com> | 2012-03-11 05:09:06 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-03-11 05:09:06 -0500 |
commit | fcc68a0041d0c1334127a880e74b3a4646292cf6 (patch) | |
tree | 8ac134f04b70ace8ccfac18fe40f1a19ffefd6c5 /src/iterators.h | |
parent | 62c04deb8719444d1f958d40fe6442b714bb7e50 (diff) | |
download | fork-ledger-fcc68a0041d0c1334127a880e74b3a4646292cf6.tar.gz fork-ledger-fcc68a0041d0c1334127a880e74b3a4646292cf6.tar.bz2 fork-ledger-fcc68a0041d0c1334127a880e74b3a4646292cf6.zip |
Critical fix to temporary destruction order
Diffstat (limited to 'src/iterators.h')
-rw-r--r-- | src/iterators.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iterators.h b/src/iterators.h index 6d490259..5bb9de6f 100644 --- a/src/iterators.h +++ b/src/iterators.h @@ -169,8 +169,8 @@ protected: journal_posts_iterator journal_posts; xacts_iterator xacts; xact_posts_iterator posts; - temporaries_t temps; xacts_list xact_temps; + temporaries_t temps; public: posts_commodities_iterator() {} |