mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
s adapted doc
This commit is contained in:
parent
647efa02be
commit
b9992c34f6
@ -242,9 +242,10 @@ public:
|
||||
explicit thread(F&& f, Args&&... args);
|
||||
|
||||
/**
|
||||
* @brief Disallow copy constructor for constant objects.
|
||||
* @brief Disallow copy constructor.
|
||||
*/
|
||||
thread(const thread&) = delete;
|
||||
|
||||
/**
|
||||
* @brief Move constructor.
|
||||
*/
|
||||
@ -256,9 +257,10 @@ public:
|
||||
~thread();
|
||||
|
||||
/**
|
||||
* @brief Disallow the assignment operator for constant objects.
|
||||
* @brief Disallow copy assignment operator.
|
||||
*/
|
||||
thread& operator=(const thread&) = delete;
|
||||
|
||||
/**
|
||||
* @brief Move assignment operator.
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user