diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/value.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/value.cc b/src/value.cc index 6685594..44a4b88 100644 --- a/src/value.cc +++ b/src/value.cc @@ -341,6 +341,7 @@ std::string Value::toString() const switch (this->type) { case STRING: + // FIXME: Escape special characters when outputting stream << '"' << this->text << '"'; break; case VECTOR: |