summaryrefslogtreecommitdiff
path: root/scope.h
diff options
context:
space:
mode:
authorCarson Fleming <cflems@cflems.net>2026-07-19 00:46:54 -0700
committerCarson Fleming <cflems@cflems.net>2026-07-19 00:46:54 -0700
commitf87e953223b7d498fc5401247952c08ab1e08f93 (patch)
treecf7283266ce3c5308e223621402e0a35ae05bb9a /scope.h
parentef09e8385119abaf5038fe00d897b2a676326e81 (diff)
downloadccc-f87e953223b7d498fc5401247952c08ab1e08f93.tar.gz
rename
Diffstat (limited to 'scope.h')
-rw-r--r--scope.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scope.h b/scope.h
index 5761f54..09a1375 100644
--- a/scope.h
+++ b/scope.h
@@ -21,7 +21,7 @@ struct storage_location {
};
};
-struct type {
+struct type_ref {
const struct type_def* raw_type;
unsigned char ptr_level;
};
@@ -41,7 +41,7 @@ struct type_def {
};
struct var_def {
- const struct type* type;
+ const struct type_ref* type;
char* name;
struct storage_location loc;
const struct type_def* resolved_type;