diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-09 17:40:52 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-09 17:40:52 (GMT) |
commit | cabff81c70f7d9083c47f5be8b5bc071168e6b35 (patch) | |
tree | b053902ada395ec5cbef8638c897b526ca742857 /src/func.cc | |
parent | ed6dd37dd5e21a665298a4afb68506ce9ac4a138 (diff) | |
parent | e65ea2d6515f205526c9cba77ad0831e3b4077d1 (diff) |
Merge branch 'master' into cache
Diffstat (limited to 'src/func.cc')
-rw-r--r-- | src/func.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/func.cc b/src/func.cc index a9d5948..4451267 100644 --- a/src/func.cc +++ b/src/func.cc @@ -311,7 +311,7 @@ Value builtin_str(const Context *, const std::vector<std::string>&, const std::v std::stringstream stream; for (size_t i = 0; i < args.size(); i++) { - stream << args[i]; + stream << args[i].toString(); } return Value(stream.str()); } |