diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-12 14:55:18 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-12 14:55:18 -0400 |
commit | 28c65cda512135bde36542351533941b019b6ee8 (patch) | |
tree | a321ec72cc0aff1a90dabe8ab07500afb1599fac /src/xact.cc | |
parent | a1fc3c5cfe2ff1fa01c488d4e130b6592be1f111 (diff) | |
download | fork-ledger-28c65cda512135bde36542351533941b019b6ee8.tar.gz fork-ledger-28c65cda512135bde36542351533941b019b6ee8.tar.bz2 fork-ledger-28c65cda512135bde36542351533941b019b6ee8.zip |
Store metadata values as value_t instead of string
Diffstat (limited to 'src/xact.cc')
-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 b4438b48..3b66598c 100644 --- a/src/xact.cc +++ b/src/xact.cc @@ -823,7 +823,7 @@ void to_xml(std::ostream& out, const xact_t& xact) } { push_xml w(out, "value"); - out << y.guard(*pair.second.first); + to_xml(out, *pair.second.first); } } else { push_xml z(out, "tag"); |