diff options
author | David Robillard <d@drobilla.net> | 2009-06-27 01:13:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-06-27 01:13:14 +0000 |
commit | 9978c2ea1b408fb295c82577d7a14bf2d54cdb3b (patch) | |
tree | d895760e95d5bafcff415a30faa8a99cbdece395 | |
parent | f81807ae192fa9b54320da69b59c063e505e94e1 (diff) | |
download | resp-9978c2ea1b408fb295c82577d7a14bf2d54cdb3b.tar.gz resp-9978c2ea1b408fb295c82577d7a14bf2d54cdb3b.tar.bz2 resp-9978c2ea1b408fb295c82577d7a14bf2d54cdb3b.zip |
Shave a few lines.
git-svn-id: http://svn.drobilla.net/resp/tuplr@153 ad02d1e2-f140-0410-9f75-f8b11f17cedd
-rw-r--r-- | tuplr.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -281,11 +281,9 @@ eval(CEnv& cenv, const string& name, istream& is) // Finish and call it cenv.engine()->finishFunction(cenv, f, resultType, val); - cenv.out << cenv.engine()->call(cenv, f, resultType) << " : " << resultType << endl; - } else { - // Non-concrete body type, just report type - cenv.out << " : " << resultType << endl; + cenv.out << cenv.engine()->call(cenv, f, resultType); } + cenv.out << " : " << resultType << endl; Object::pool.collect(Object::pool.roots()); |