aboutsummaryrefslogtreecommitdiffstats
path: root/src/lift.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-11-17 07:30:59 +0000
committerDavid Robillard <d@drobilla.net>2010-11-17 07:30:59 +0000
commit0e77ece68cc136ff294f0b272634e520c477143b (patch)
tree61722f16a87bf8c391cf984be1abdf1ae69c3732 /src/lift.cpp
parentf649096bc715541c6b861f13c6710eda970b78ce (diff)
downloadresp-0e77ece68cc136ff294f0b272634e520c477143b.tar.gz
resp-0e77ece68cc136ff294f0b272634e520c477143b.tar.bz2
resp-0e77ece68cc136ff294f0b272634e520c477143b.zip
Use single uint32_t for GC object header (mark and tag).
git-svn-id: http://svn.drobilla.net/resp/resp@272 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'src/lift.cpp')
-rw-r--r--src/lift.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lift.cpp b/src/lift.cpp
index b2ead08..563fd5d 100644
--- a/src/lift.cpp
+++ b/src/lift.cpp
@@ -113,7 +113,7 @@ AFn::lift(CEnv& cenv, Code& code) throw()
// Create definition for implementation fn
ASymbol* implName = cenv.penv.sym(impl->name);
- ADef* def = tup<ADef>(loc, cenv.penv.sym("def"), implName, impl, NULL);
+ ADef* def = tup<ADef>(loc, cenv.penv.sym("def"), implName, impl, NULL);
code.push_back(def);
AType* implT = new AType(*type); // Type of the implementation function