X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/74c5de07784abf609331bcf7242145cc4affdaab..1d0056178d75e1a88c82c6657833f24153f5ad16:/include/xbt/functional.hpp diff --git a/include/xbt/functional.hpp b/include/xbt/functional.hpp index 9ca66f816e..386830b637 100644 --- a/include/xbt/functional.hpp +++ b/include/xbt/functional.hpp @@ -281,15 +281,6 @@ template auto make_task(F code, Args... args) -> Task(std::move(task)); } -// Deprecated -template -XBT_ATTRIB_DEPRECATED_v323("Please use make_task()") auto makeTask(F code, Args... args) - -> Task -{ - TaskImpl task(std::move(code), std::make_tuple(std::move(args)...)); - return Task(std::move(task)); -} - } // namespace xbt } // namespace simgrid #endif