From b9992c34f6c09f70fb49946e338fce9d3e6a5859 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Thu, 18 May 2017 14:53:03 +0200 Subject: [PATCH] s adapted doc --- sys/cpp11-compat/include/riot/thread.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys/cpp11-compat/include/riot/thread.hpp b/sys/cpp11-compat/include/riot/thread.hpp index c49ac9b35..a9b1323dc 100644 --- a/sys/cpp11-compat/include/riot/thread.hpp +++ b/sys/cpp11-compat/include/riot/thread.hpp @@ -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. */