diff options
| author | 2026-03-29 14:49:56 +0100 | |
|---|---|---|
| committer | 2026-03-29 14:49:56 +0100 | |
| commit | b5964e4a009bd6b3b118867620f5fad9db284da5 (patch) | |
| tree | 7a1c17d611d6fe32eb3100386a4253856e09751b /src/thread.cpp | |
| parent | Avoid the direct use of intptr_t wherever possible. (diff) | |
Move some functions from stdalgo to utility/pointer.
Diffstat (limited to 'src/thread.cpp')
| -rw-r--r-- | src/thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.cpp b/src/thread.cpp index 45734e84e..8474fe38b 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -62,7 +62,7 @@ bool Thread::Stop() stopping = true; thread->join(); - stdalgo::delete_zero(thread); + insp::delete_zero(thread); return true; } |
