diff options
author | David Robillard <d@drobilla.net> | 2015-11-07 01:03:17 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-11-07 01:03:17 +0000 |
commit | 3d3bc067a701aab1db7c856713ff405a7795d8b0 (patch) | |
tree | 3a42dd26e276c0def3ecc9b32b5225b7ae279d4b /src/resp.hpp | |
parent | 65f1c1e1980794b015752ee821abbb6f7fba7c1b (diff) | |
download | resp-3d3bc067a701aab1db7c856713ff405a7795d8b0.tar.gz resp-3d3bc067a701aab1db7c856713ff405a7795d8b0.tar.bz2 resp-3d3bc067a701aab1db7c856713ff405a7795d8b0.zip |
Delete trailing whitespace
git-svn-id: http://svn.drobilla.net/resp/trunk@457 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/resp.hpp')
-rw-r--r-- | src/resp.hpp | 6 |
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; |