summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'types.h')
-rw-r--r--types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/types.h b/types.h
index 448727a..45b5752 100644
--- a/types.h
+++ b/types.h
@@ -176,6 +176,7 @@ typedef union Value {
struct Namespace *nms;
struct VarArg *varargs; /* dynamic array */
} Value;
+typedef Value *ValuePtr;
typedef struct VarArg {
struct Type *type;
@@ -880,7 +881,6 @@ typedef struct Declaration {
/* for eval, for non-constant local decls: */
/* the pointers to values need to be fixed, which is why this isn't just Value *. */
- /* @OPTIM: some block array of values somewhere which we can just use a pointer to, which is freed when the block is exited? */
Value **val_stack;
} Declaration;
typedef Declaration *DeclarationPtr;