[pure-lang-svn] SF.net SVN: pure-lang: [310] pure/trunk/interpreter.cc
Status: Beta
Brought to you by:
agraef
From: <ag...@us...> - 2008-06-25 07:39:50
|
Revision: 310 http://pure-lang.svn.sourceforge.net/pure-lang/?rev=310&view=rev Author: agraef Date: 2008-06-25 00:39:52 -0700 (Wed, 25 Jun 2008) Log Message: ----------- Comment change. Modified Paths: -------------- pure/trunk/interpreter.cc Modified: pure/trunk/interpreter.cc =================================================================== --- pure/trunk/interpreter.cc 2008-06-24 23:46:23 UTC (rev 309) +++ pure/trunk/interpreter.cc 2008-06-25 07:39:52 UTC (rev 310) @@ -2745,9 +2745,7 @@ // expression. /* NOTE: The environment is allocated dynamically, so that its child environments survive for the entire lifetime of any embedded closures, - which might still be called at a later time. XXXFIXME: This leaks memory - right now. How do we keep track of environments that might still be - needed? */ + which might still be called at a later time. */ Env *save_fptr = fptr; fptr = new Env(0, 0, x, false); fptr->refc = 1; Env &f = *fptr; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |