Author: infinoid
Date: Tue Jan  6 22:01:27 2009
New Revision: 35095

Modified:
   trunk/src/ops/core.ops

Log:
[cage] Fix another constness warning.

Modified: trunk/src/ops/core.ops
==============================================================================
--- trunk/src/ops/core.ops      (original)
+++ trunk/src/ops/core.ops      Tue Jan  6 22:01:27 2009
@@ -133,7 +133,7 @@
 }
 
 inline op prederef__() :internal :flow {
-    const opcode_t * const _this = CUR_OPCODE;
+    opcode_t * const _this = CUR_OPCODE;
     if (interp->run_core & PARROT_CGOTO_CORE) {
         /* must be CGP then - check for events in not yet prederefed code */
         Parrot_cx_runloop_wake(interp, interp->scheduler);

Reply via email to