Skip to content
Snippets Groups Projects
Commit b9ec282f authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

Merge pull request #7072 from haukepetersen/fix_cpp11compat_doc

sys/cpp11-compat: fixed doxygen warnings
parents fb041209 b9992c34
No related branches found
No related tags found
No related merge requests found
......@@ -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.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment