summaryrefslogtreecommitdiff
path: root/csv.cc
diff options
context:
space:
mode:
Diffstat (limited to 'csv.cc')
-rw-r--r--csv.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/csv.cc b/csv.cc
index 4a8c1157..6a94ec4b 100644
--- a/csv.cc
+++ b/csv.cc
@@ -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 << "\"";