aboutsummaryrefslogtreecommitdiff
path: root/src/types.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-02-28 11:44:41 +0000
committergingerBill <bill@gingerbill.org>2018-02-28 11:44:41 +0000
commit9da05dd4cbab364d1fc8260abdc0c980497389b8 (patch)
treeb14d168b861036807610c3f9143cc5a31c7fc1a0 /src/types.cpp
parentae9da0abfb7f88d78544c3308fd7d4eb12cb8bf1 (diff)
Update core library with `cstring`
Diffstat (limited to 'src/types.cpp')
-rw-r--r--src/types.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/types.cpp b/src/types.cpp
index c0254729f..a5b6310f0 100644
--- a/src/types.cpp
+++ b/src/types.cpp
@@ -1083,6 +1083,8 @@ bool type_has_nil(Type *t) {
case Basic_rawptr:
case Basic_any:
return true;
+ case Basic_cstring:
+ return true;
}
return false;
} break;