diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-09 14:05:01 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-09 14:05:01 -0500 |
commit | 9e07e61fadf7f3c9d1fd32a3805f6e97163eba15 (patch) | |
tree | 0245cb6c9e9c3a792a304f964d9dddbcd4142bba /src/mask.h | |
parent | 865c0ff828f88ed1d00eea73a3fc55b3e57d21b3 (diff) | |
download | fork-ledger-9e07e61fadf7f3c9d1fd32a3805f6e97163eba15.tar.gz fork-ledger-9e07e61fadf7f3c9d1fd32a3805f6e97163eba15.tar.bz2 fork-ledger-9e07e61fadf7f3c9d1fd32a3805f6e97163eba15.zip |
Fix to the XML code for ICU users
Diffstat (limited to 'src/mask.h')
-rw-r--r-- | src/mask.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -149,7 +149,7 @@ inline std::ostream& operator<<(std::ostream& out, const mask_t& mask) { inline void to_xml(std::ostream& out, const mask_t& mask) { push_xml x(out, "mask"); - out << x.guard(mask.expr.str()); + out << x.guard(mask.str()); } } // namespace ledger |