summaryrefslogtreecommitdiff
path: root/zen/json.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/json.h')
-rw-r--r--zen/json.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/json.h b/zen/json.h
index a3740664..f6458d6a 100644
--- a/zen/json.h
+++ b/zen/json.h
@@ -372,7 +372,7 @@ public:
if (*it == '"')
{
Token tk(Token::Type::string);
- tk.primVal = jsonUnescape({ pos_, it });
+ tk.primVal = jsonUnescape({pos_, it});
pos_ = ++it;
return tk;
}
bgstack15