[svn:mod_parrot] r573 - mod_parrot/trunk/src/pmc

[email protected] Fri, 2 Jan 2009 09:13:56 -0800 (PST)
Newsgroups perl.cvs.mod_parrot
Message-ID <[email protected]>
Author: jhorwitz
Date: Fri Jan  2 09:13:55 2009
New Revision: 573

Modified:
   mod_parrot/trunk/src/pmc/modparrothandle.pmc

Log:
add a no-op flush() method, since it may be called by Parrot or HLLs


Modified: mod_parrot/trunk/src/pmc/modparrothandle.pmc
==============================================================================
--- mod_parrot/trunk/src/pmc/modparrothandle.pmc	(original)
+++ mod_parrot/trunk/src/pmc/modparrothandle.pmc	Fri Jan  2 09:13:55 2009
@@ -375,13 +375,15 @@
 
 =item C<METHOD flush()>
 
-TODO
+This is a no-op for now.
 
 =cut
 
 */
 
-/* flush code here */
+    METHOD flush() {
+        RETURN();
+    }
 
 /*