summaryrefslogtreecommitdiff
path: root/scope.h
diff options
context:
space:
mode:
authorCarson Fleming <[email protected]>2026-03-28 17:05:37 -1000
committerCarson Fleming <[email protected]>2026-03-28 17:05:37 -1000
commitb4d7305730606126d74862ca472a3efed964c2d8 (patch)
tree933ee0e11e30ec03181aba9051795513b94b0421 /scope.h
parent0dc409ab0967d9973f36c138825067462b9a216f (diff)
downloadccc-b4d7305730606126d74862ca472a3efed964c2d8.tar.gz
rehashing and size tracking corrections
Diffstat (limited to 'scope.h')
-rw-r--r--scope.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/scope.h b/scope.h
index a67c66b..2066a51 100644
--- a/scope.h
+++ b/scope.h
@@ -19,13 +19,12 @@ struct storage_location {
struct type_def {
const char* name;
- unsigned long long size;
+ unsigned long long sz;
};
struct var_def {
const char* name;
struct storage_location loc;
- unsigned long long sz;
};
struct scope {