diff options
author | John Wiegley <johnw@newartisans.com> | 2023-12-13 12:59:40 -0800 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2024-08-05 08:35:56 -0700 |
commit | 28ae2eaccb58e539dfd8f8533508a8edfe8bb027 (patch) | |
tree | bf4403292ee84a14cbbef2357d3db6aeb5c7414f | |
parent | 621eb11e5cedfa93ae027aafd0b3e14fcf1cd3ee (diff) | |
download | fork-ledger-28ae2eaccb58e539dfd8f8533508a8edfe8bb027.tar.gz fork-ledger-28ae2eaccb58e539dfd8f8533508a8edfe8bb027.tar.bz2 fork-ledger-28ae2eaccb58e539dfd8f8533508a8edfe8bb027.zip |
Another whitespace change
-rw-r--r-- | src/xact.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xact.cc b/src/xact.cc index e6a3991a..a0e5b8b4 100644 --- a/src/xact.cc +++ b/src/xact.cc @@ -603,9 +603,9 @@ string xact_t::hash(string nonce, hash_type_t hash_type) const { repr << code; repr << payee; - posts_list all_posts(posts.begin(), posts.end()); std::vector<std::string> strings; + posts_list all_posts(posts.begin(), posts.end()); foreach (post_t * post, all_posts) { std::ostringstream posting; posting << post->account->fullname(); |