]> git.mxchange.org Git - simgear.git/blobdiff - simgear/nasal/code.h
Cygwin fixes.
[simgear.git] / simgear / nasal / code.h
index d5fce777ae6255581bf1a2bcff9776169afce795..bd77647d47ac5820b65aefa3e89add675f5d209b 100644 (file)
@@ -80,7 +80,9 @@ struct Context {
     // GC-findable reference point for objects that may live on the
     // processor ("real") stack during execution.  naNew() places them
     // here, and clears the array each instruction
-    naRef temps;
+    struct naObj** temps;
+    int ntemps;
+    int tempsz;
 
     // Error handling
     jmp_buf jumpHandle;