1
0
forked from fsfw/fsfw

deleted copyctor and copy assignment

This commit is contained in:
2020-05-20 12:50:56 +02:00
parent 338651af2f
commit f6b17d6e2e
2 changed files with 4 additions and 25 deletions

View File

@ -39,10 +39,10 @@ public:
//! @brief Default ctor
BinarySemaphore();
//! @brief Copy ctor
BinarySemaphore(const BinarySemaphore&);
//! @brief Copy assignment
BinarySemaphore& operator=(const BinarySemaphore&);
//! @brief Copy ctor, deleted explicitely.
BinarySemaphore(const BinarySemaphore&) = delete;
//! @brief Copy assignment, deleted explicitely.
BinarySemaphore& operator=(const BinarySemaphore&) = delete;
//! @brief Move ctor
BinarySemaphore (BinarySemaphore &&);
//! @brief Move assignment