From: Arnaud Giersch Date: Mon, 18 Mar 2019 12:58:54 +0000 (+0100) Subject: Unhide non-deprecated declaration. X-Git-Tag: v3_22~65 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/89f6d35abcb0216d91af8375fc48a027ff372a08?hp=3ae6123aa28d3dd81f94623705f692d0cde6de57;ds=sidebyside Unhide non-deprecated declaration. --- diff --git a/include/simgrid/s4u/Host.hpp b/include/simgrid/s4u/Host.hpp index dd31bcf85e..844c8dd3eb 100644 --- a/include/simgrid/s4u/Host.hpp +++ b/include/simgrid/s4u/Host.hpp @@ -126,6 +126,8 @@ public: void set_pstate(int pstate_index); int get_pstate() const; + std::vector get_attached_storages() const; + #ifndef DOXYGEN /** @deprecated See Host::get_speed() */ XBT_ATTRIB_DEPRECATED_v323("Please use Host::get_speed() instead.") double getSpeed() { return get_speed(); } @@ -134,8 +136,6 @@ public: { return get_pstate_speed(pstate_index); } - - std::vector get_attached_storages() const; XBT_ATTRIB_DEPRECATED_v323("Please use Host::get_attached_storages() instead.") void getAttachedStorages( std::vector* storages); #endif