aboutsummaryrefslogtreecommitdiff
path: root/src/thread.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-03-29 14:49:56 +0100
committerGravatar Sadie Powell2026-03-29 14:49:56 +0100
commitb5964e4a009bd6b3b118867620f5fad9db284da5 (patch)
tree7a1c17d611d6fe32eb3100386a4253856e09751b /src/thread.cpp
parentAvoid 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.cpp2
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;
}