Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / src / kernel / future.cpp
diff --git a/src/kernel/future.cpp b/src/kernel/future.cpp
deleted file mode 100644 (file)
index 4eb9900..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* Copyright (c) 2016-2017. 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/simix/smx_private.hpp"
-
-namespace simgrid {
-namespace kernel {
-
-void FutureStateBase::schedule(simgrid::xbt::Task<void()>&& job)
-{
-  simix_global->tasks.push_back(std::move(job));
-}
-
-}
-}