aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-06-27 01:13:14 +0000
committerDavid Robillard <d@drobilla.net>2009-06-27 01:13:14 +0000
commit9978c2ea1b408fb295c82577d7a14bf2d54cdb3b (patch)
treed895760e95d5bafcff415a30faa8a99cbdece395
parentf81807ae192fa9b54320da69b59c063e505e94e1 (diff)
downloadresp-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.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/tuplr.cpp b/tuplr.cpp
index dd4681f..7dd3e9b 100644
--- a/tuplr.cpp
+++ b/tuplr.cpp
@@ -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());