X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4a4884ead9a3d55f9247a3facc7b310f1a0fe942..a96793ec8c496eec19daf68f3aa0c4eded2ea166:/include/xbt/functional.hpp diff --git a/include/xbt/functional.hpp b/include/xbt/functional.hpp index a2ddfa7280..1fefcd8473 100644 --- a/include/xbt/functional.hpp +++ b/include/xbt/functional.hpp @@ -192,7 +192,7 @@ private: { const static TaskVtable vtable { // Call: - [](TaskUnion& buffer, Args... args) { + [](TaskUnion& buffer, Args&&... args) { F* src = reinterpret_cast(&buffer); F code = std::move(*src); src->~F(); @@ -221,7 +221,7 @@ private: { const static TaskVtable vtable { // Call: - [](TaskUnion& buffer, Args... args) { + [](TaskUnion& buffer, Args&&... args) { // Delete F when we go out of scope: std::unique_ptr code(*reinterpret_cast(&buffer)); return (*code)(std::forward(args)...); @@ -244,7 +244,7 @@ public: operator bool() const { return vtable_ != nullptr; } bool operator!() const { return vtable_ == nullptr; } - R operator()(Args... args) + R operator()(Args&&... args) { if (vtable_ == nullptr) throw std::bad_function_call();