From 89f6d35abcb0216d91af8375fc48a027ff372a08 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Mon, 18 Mar 2019 13:58:54 +0100 Subject: [PATCH] Unhide non-deprecated declaration. --- include/simgrid/s4u/Host.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.20.1