1
0
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:
Hauke Petersen 2017-05-18 14:53:03 +02:00
parent 647efa02be
commit b9992c34f6

View File

@ -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.
*/