Skip to content

Commit

Permalink
Fixed mutex in const method
Browse files Browse the repository at this point in the history
  • Loading branch information
Schildkroet committed Feb 19, 2024
1 parent 950956a commit 365c808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/safequeue.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class SafeQueue

private:
std::list<T> mQueue;
std::mutex mMutex;
mutable std::mutex mMutex;
};


Expand Down

0 comments on commit 365c808

Please sign in to comment.