diff options
Diffstat (limited to 'csv.cc')
-rw-r--r-- | csv.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,10 +3,10 @@ namespace ledger { namespace { - inline void write_escaped_string(std::ostream& out, const std::string& xact) + inline void write_escaped_string(std::ostream& out, const string& xact) { out << "\""; - for (std::string::const_iterator i = xact.begin(); i != xact.end(); i++) + for (string::const_iterator i = xact.begin(); i != xact.end(); i++) if (*i == '"') { out << "\\"; out << "\""; |