Skip to content
Snippets Groups Projects
Commit 647efa02 authored by Hauke Petersen's avatar Hauke Petersen
Browse files

sys/cpp11-compat: fixed doxygen warnings

parent dce3015e
No related branches found
No related tags found
No related merge requests found
...@@ -240,6 +240,10 @@ public: ...@@ -240,6 +240,10 @@ public:
*/ */
template <class F, class... Args> template <class F, class... Args>
explicit thread(F&& f, Args&&... args); explicit thread(F&& f, Args&&... args);
/**
* @brief Disallow copy constructor for constant objects.
*/
thread(const thread&) = delete; thread(const thread&) = delete;
/** /**
* @brief Move constructor. * @brief Move constructor.
...@@ -251,6 +255,9 @@ public: ...@@ -251,6 +255,9 @@ public:
~thread(); ~thread();
/**
* @brief Disallow the assignment operator for constant objects.
*/
thread& operator=(const thread&) = delete; thread& operator=(const thread&) = delete;
/** /**
* @brief Move assignment operator. * @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