From f0bbe766b9cfd14f09e847519b84cf7025839486 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 28 Dec 2010 07:40:30 +0000 Subject: Use fst ("first") instead of head and rst ("rest") instead of tail. git-svn-id: http://svn.drobilla.net/resp/resp@366 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- src/expand.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/expand.cpp') diff --git a/src/expand.cpp b/src/expand.cpp index f0fed33..d10b64d 100644 --- a/src/expand.cpp +++ b/src/expand.cpp @@ -77,8 +77,8 @@ expand_def(PEnv& penv, const AST* exp, void* arg) fnExp.head->loc = body->loc; List ret; - ret.push_back(tup->head()); - ret.push_back(pat->head()); + ret.push_back(tup->fst()); + ret.push_back(pat->fst()); ret.push_back(fnExp.head); ret.head->loc = exp->loc; -- cgit v1.2.1