Skip to content
Snippets Groups Projects
Commit ad84840f authored by Florian Fischer's avatar Florian Fischer
Browse files

[WorkerSleepStrategy] call the correct implementation method

parent 3ab70f90
No related branches found
No related tags found
No related merge requests found
Pipeline #61640 passed
...@@ -14,7 +14,7 @@ static constexpr bool needsNotifySpecific = ...@@ -14,7 +14,7 @@ static constexpr bool needsNotifySpecific =
template <class T> template <class T>
class AbstractWorkerSleepStrategy { class AbstractWorkerSleepStrategy {
[[nodiscard]] inline auto getSleeping() const -> long { [[nodiscard]] inline auto getSleeping() const -> long {
return static_cast<T*>(this)->getValue(); return static_cast<T*>(this)->getSleeping();
} }
template <CallerEnvironment callerEnvironment> template <CallerEnvironment callerEnvironment>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment