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:
parent
dce3015e0c
commit
647efa02be
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user