diff options
| author | gingerBill <bill@gingerbill.org> | 2022-12-20 14:19:55 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-12-20 14:19:55 +0000 |
| commit | 8fc9566a837fbd3fe52f3f1b5e766e122b3c2de2 (patch) | |
| tree | 8a511e3d57e8f27ed0d98dde37d060eb68437755 /src/types.cpp | |
| parent | 134c7db4d21e80751833ed45fb4ace5d0ae3b7d2 (diff) | |
Use `*_set_update` where possible
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.cpp b/src/types.cpp index b1d3883c6..890098ad0 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -812,7 +812,7 @@ gb_internal void init_type_mutex(void) { mutex_init(&g_type_mutex); } -gb_internal bool type_ptr_set_exists(PtrSet<Type *> *s, Type *t) { +gb_internal bool type_ptr_set_update(PtrSet<Type *> *s, Type *t) { if (ptr_set_exists(s, t)) { return true; } |