1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/cpp11-compat: fixed doxygen warnings

This commit is contained in:
Hauke Petersen 2017-05-18 10:01:12 +02:00
parent dce3015e0c
commit 647efa02be

View File

@ -240,6 +240,10 @@ public:
*/
template <class F, class... Args>
explicit thread(F&& f, Args&&... args);
/**
* @brief Disallow copy constructor for constant objects.
*/
thread(const thread&) = delete;
/**
* @brief Move constructor.
@ -251,6 +255,9 @@ public:
~thread();
/**
* @brief Disallow the assignment operator for constant objects.
*/
thread& operator=(const thread&) = delete;
/**
* @brief Move assignment operator.