Skip to content

Commit

Permalink
Fix function names.
Browse files Browse the repository at this point in the history
  • Loading branch information
ehpor committed Nov 12, 2024
1 parent 8d0462b commit 56431e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions catkit_core/SynchronizationSemaphore.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ class SynchronizationSemaphore : public SynchronizationBase<SynchronizationSemap
void Unlock();

protected:
void Create(const std::string &id, SharedState *shared_state);
void Open(const std::string &id, SharedState *shared_state);
void CreateImpl(const std::string &id, SharedState *shared_state);
void OpenImpl(const std::string &id, SharedState *shared_state);

HANDLE m_Semaphore;
};
Expand Down

0 comments on commit 56431e5

Please sign in to comment.