Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
No future.
[simgrid.git] / src / kernel / future.cpp
diff --git a/src/kernel/future.cpp b/src/kernel/future.cpp
deleted file mode 100644 (file)
index 7c418c7..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* Copyright (c) 2016-2022. The SimGrid Team.
- * All rights reserved.                                                     */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#include <xbt/functional.hpp>
-
-#include <simgrid/kernel/future.hpp>
-
-#include "src/kernel/EngineImpl.hpp"
-
-namespace simgrid {
-namespace kernel {
-
-void FutureStateBase::schedule(simgrid::xbt::Task<void()>&& job) const
-{
-  EngineImpl::get_instance()->add_task(std::move(job));
-}
-
-} // namespace kernel
-} // namespace simgrid