From 647efa02beca531ccea37729a766b1d51c9ff132 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Thu, 18 May 2017 10:01:12 +0200 Subject: [PATCH] sys/cpp11-compat: fixed doxygen warnings --- sys/cpp11-compat/include/riot/thread.hpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sys/cpp11-compat/include/riot/thread.hpp b/sys/cpp11-compat/include/riot/thread.hpp index 3f0dca01d5..c49ac9b354 100644 --- a/sys/cpp11-compat/include/riot/thread.hpp +++ b/sys/cpp11-compat/include/riot/thread.hpp @@ -240,6 +240,10 @@ public: */ template explicit thread(F&& f, Args&&... args); + + /** + * @brief Disallow copy constructor for constant objects. + */ thread(const thread&) = delete; /** * @brief Move constructor. @@ -251,6 +255,9 @@ public: ~thread(); + /** + * @brief Disallow the assignment operator for constant objects. + */ thread& operator=(const thread&) = delete; /** * @brief Move assignment operator.