summaryrefslogtreecommitdiff
path: root/Source/UnitTests
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2025-05-19 12:08:10 +0200
committerJosJuice <josjuice@gmail.com>2025-11-10 21:14:56 +0100
commit068947e2b613d15f724c87c501949c9105cc7f7f (patch)
treee34562983d36e5dc2495eb1c55688ccb95c68ad8 /Source/UnitTests
parent1bba42de45b50638b7907f816c669eff7a52ad6e (diff)
Core: Remove IsHostThread
The core no longer cares which thread is the host thread. Cleaning up Android's HostThreadLock is left for another PR, in part because the HostThreadLock in NativeConfig.cpp still serves a purpose, and in part to make any issues easier to bisect.
Diffstat (limited to 'Source/UnitTests')
-rw-r--r--Source/UnitTests/UnitTestsMain.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/UnitTests/UnitTestsMain.cpp b/Source/UnitTests/UnitTestsMain.cpp
index 4eed0c6099..3edb1c1909 100644
--- a/Source/UnitTests/UnitTestsMain.cpp
+++ b/Source/UnitTests/UnitTestsMain.cpp
@@ -25,7 +25,6 @@ int main(int argc, char** argv)
{
fmt::print(stderr, "Running main() from UnitTestsMain.cpp\n");
Common::RegisterMsgAlertHandler(TestMsgHandler);
- Core::DeclareAsHostThread();
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();