X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2807fde4fd1f59c230d69a934634c5dfb77905f2..HEAD:/src/kernel/future.cpp diff --git a/src/kernel/future.cpp b/src/kernel/future.cpp deleted file mode 100644 index 4eb99001b3..0000000000 --- a/src/kernel/future.cpp +++ /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 - -#include - -#include "src/simix/smx_private.hpp" - -namespace simgrid { -namespace kernel { - -void FutureStateBase::schedule(simgrid::xbt::Task&& job) -{ - simix_global->tasks.push_back(std::move(job)); -} - -} -}