From 9978c2ea1b408fb295c82577d7a14bf2d54cdb3b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 27 Jun 2009 01:13:14 +0000 Subject: Shave a few lines. git-svn-id: http://svn.drobilla.net/resp/tuplr@153 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- tuplr.cpp | 6 ++---- 1 file 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()); -- cgit v1.2.1