diff options
Diffstat (limited to 'src/common/threadsafe_queue.h')
-rw-r--r-- | src/common/threadsafe_queue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/threadsafe_queue.h b/src/common/threadsafe_queue.h index 3893cd713..8224d96e9 100644 --- a/src/common/threadsafe_queue.h +++ b/src/common/threadsafe_queue.h @@ -52,7 +52,7 @@ public: // cv_mutex must be held or else there will be a missed wakeup if the other thread is in the // line before cv.wait // TODO(bunnei): This can be replaced with C++20 waitable atomics when properly supported. - // See discussion on https://github.com/citron-emu/citron/pull/3173 for details. + // See discussion on https://git.citron-emu.org/Citron/Citron/pull/3173 for details. std::scoped_lock lock{cv_mutex}; cv.notify_one(); } |