Use casts to silence ASan complaints

I don't think these are actually causing any real problems, ASan
complains about them though since it's kind of a code smell I guess and
a potential source of problems. But our case is fine, so cast to silence
them.
This commit is contained in:
Michael Cook (mackal)
2021-02-28 18:01:34 -05:00
parent 66f89416d5
commit cafae9d8c6
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ namespace EQ {
void Stop() {
if (m_timer) {
uv_close((uv_handle_t*)m_timer, [](uv_handle_t* handle) {
delete handle;
delete (uv_timer_t *)handle;
});
m_timer = nullptr;
}