diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-10-06 14:42:03 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-10-06 17:20:20 -0400 |
| commit | 791c153aabd579f518a9b00613459cba13734797 (patch) | |
| tree | 858ec6f9a8398398a8a53ec5a886bca5825c62e0 /src/event.cpp | |
| parent | 286bf5539527500429cfca4ded0bb78406f6364b (diff) | |
Memory management - ctors and dtors
Diffstat (limited to 'src/event.cpp')
| -rw-r--r-- | src/event.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/event.cpp b/src/event.cpp index a129490..62ebd88 100644 --- a/src/event.cpp +++ b/src/event.cpp @@ -57,3 +57,7 @@ void Event_Dispatch(const char *name) { } } +void Event_Teardown() { + eventBuckets.~DynArray(); +} + |
