1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #7072 from haukepetersen/fix_cpp11compat_doc

sys/cpp11-compat: fixed doxygen warnings
This commit is contained in:
Martine Lenders 2017-05-19 11:06:41 +02:00 committed by GitHub
commit b9ec282f04

View File

@ -240,7 +240,12 @@ public:
*/
template <class F, class... Args>
explicit thread(F&& f, Args&&... args);
/**
* @brief Disallow copy constructor.
*/
thread(const thread&) = delete;
/**
* @brief Move constructor.
*/
@ -251,7 +256,11 @@ public:
~thread();
/**
* @brief Disallow copy assignment operator.
*/
thread& operator=(const thread&) = delete;
/**
* @brief Move assignment operator.
*/