From: Frederic Suter Date: Mon, 10 Jul 2017 07:38:27 +0000 (+0200) Subject: this was never used too X-Git-Tag: v3_17~416^2~9 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/184218efccb68bd24bb352d908e5f112c23a6bd0 this was never used too --- diff --git a/src/surf/StorageImpl.hpp b/src/surf/StorageImpl.hpp index 4773a9b37e..69f0026970 100644 --- a/src/surf/StorageImpl.hpp +++ b/src/surf/StorageImpl.hpp @@ -184,7 +184,6 @@ public: typedef enum { READ = 0, /**< Read a file */ WRITE, /**< Write in a file */ - STAT, /**< Stat a file */ OPEN, /**< Open a file */ CLOSE /**< Close a file */ } e_surf_action_storage_type_t; diff --git a/src/surf/storage_n11.cpp b/src/surf/storage_n11.cpp index 03b357c554..a370475170 100644 --- a/src/surf/storage_n11.cpp +++ b/src/surf/storage_n11.cpp @@ -212,8 +212,6 @@ StorageN11Action::StorageN11Action(Model* model, double cost, bool failed, Stora switch(type) { case OPEN: case CLOSE: - case STAT: - break; case READ: lmm_expand(model->getMaxminSystem(), storage->constraintRead_, getVariable(), 1.0); break;