diff options
author | David Robillard <d@drobilla.net> | 2009-06-20 20:10:01 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-06-20 20:10:01 +0000 |
commit | d5556bc9a81ba5f5bd16f9c9d1d945f3e41355b7 (patch) | |
tree | a91d81b649de2b6bf0d85e7aff0301e3d9fc77a0 | |
parent | f78b6fd389affdda9f165aa83566b896e1edd199 (diff) | |
download | resp-d5556bc9a81ba5f5bd16f9c9d1d945f3e41355b7.tar.gz resp-d5556bc9a81ba5f5bd16f9c9d1d945f3e41355b7.tar.bz2 resp-d5556bc9a81ba5f5bd16f9c9d1d945f3e41355b7.zip |
Tidy.
git-svn-id: http://svn.drobilla.net/resp/tuplr@141 ad02d1e2-f140-0410-9f75-f8b11f17cedd
-rw-r--r-- | llvm.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -92,10 +92,11 @@ llEngine(CEnv& cenv) } #define LITERAL(CT, NAME, COMPILED) \ -template<> CValue \ -ALiteral<CT>::compile(CEnv& cenv) { return (COMPILED); } \ +template<> CValue ALiteral<CT>::compile(CEnv& cenv) { return (COMPILED); } \ template<> void \ -ALiteral<CT>::constrain(TEnv& tenv, Constraints& c) const { c.constrain(tenv, this, tenv.named(NAME)); } +ALiteral<CT>::constrain(TEnv& tenv, Constraints& c) const { \ + c.constrain(tenv, this, tenv.named(NAME)); \ +} /// Literal template instantiations LITERAL(int32_t, "Int", ConstantInt::get(Type::Int32Ty, val, true)) |