Skip to content

Commit

Permalink
Linux fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStarch committed Sep 27, 2024
1 parent d8b5ba0 commit 6c0ac83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Os/Posix/ConditionVariable.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ class PosixConditionVariable : public ConditionVariableInterface {
//!
~PosixConditionVariable() override;

ConditionVariableInterface& operator=(const ConditionVariableInterface& other) override = delete;

//! \brief wait releasing mutex
void wait(Os::Mutex& mutex) override;

Expand Down
2 changes: 1 addition & 1 deletion Os/Queue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ class Queue final : public QueueInterface {
Queue(const Queue* other) = delete;

//! \brief assignment operator is forbidden
Queue& operator=(const Queue& other) = delete;
QueueInterface& operator=(const QueueInterface& other) override = delete;

//! \brief create queue storage through delegate
//!
Expand Down

0 comments on commit 6c0ac83

Please sign in to comment.