aboutsummaryrefslogtreecommitdiff
path: root/types.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-03-03 13:04:50 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-03-03 13:04:50 -0500
commitec7a9e5f107a68072b3a4dd84aa6a4b461657345 (patch)
tree2a03723c2d8060e4503c6b9ecb97baad9432cd3d /types.c
parent4dc70c84d4226174d44f1b53599d08de7a4e83aa (diff)
Initial pass at namespacing
Diffstat (limited to 'types.c')
-rw-r--r--types.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/types.c b/types.c
index 5e37536b..f03fe263 100644
--- a/types.c
+++ b/types.c
@@ -53,7 +53,7 @@ CORD type_to_cord(type_t *t) {
return tagged->name;
}
case TypeInfoType: {
- return "TypeInfo";
+ return CORD_all("TypeInfo(", Match(t, TypeInfoType)->name, ")");
}
default: {
raise(SIGABRT);