diff options
| author | gingerBill <bill@gingerbill.org> | 2018-02-28 11:44:41 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-02-28 11:44:41 +0000 |
| commit | 9da05dd4cbab364d1fc8260abdc0c980497389b8 (patch) | |
| tree | b14d168b861036807610c3f9143cc5a31c7fc1a0 /src/types.cpp | |
| parent | ae9da0abfb7f88d78544c3308fd7d4eb12cb8bf1 (diff) | |
Update core library with `cstring`
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 2 |
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; |