aboutsummaryrefslogtreecommitdiffstats
path: root/src/resp.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/resp.hpp')
-rw-r--r--src/resp.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/resp.hpp b/src/resp.hpp
index 5eb9ef0..90a0efa 100644
--- a/src/resp.hpp
+++ b/src/resp.hpp
@@ -293,7 +293,7 @@ inline ATuple* tup(Cursor c, const AST* ast, ...) {
ATuple* const head = new ATuple(ast, 0, c);
if (!ast)
return head;
-
+
ATuple* tail = head;
va_list args;
va_start(args, ast);
@@ -334,7 +334,7 @@ list_equals(const ATuple* lhs, const ATuple* rhs)
return true;
else if (!lhs || !rhs)
return false;
-
+
ATuple::const_iterator l = lhs->begin();
for (const auto& r : *rhs)
if (l == lhs->end() || !(*(*l++) == *r))
@@ -716,7 +716,7 @@ struct TEnv : public Env<const AST*> {
};
typedef map<const std::string, Constructor> Tags;
-
+
Vars vars;
Tags tags;
PEnv& penv;