From 0f098a85fc047d3867d75d78b7781e61635e69b0 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Mon, 17 Jan 2022 15:37:06 +0100 Subject: [PATCH] Deprecate functions unused after removal of SimDag. --- include/simgrid/kernel/resource/Action.hpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/include/simgrid/kernel/resource/Action.hpp b/include/simgrid/kernel/resource/Action.hpp index 8f3f5a90a5..ac27f95182 100644 --- a/include/simgrid/kernel/resource/Action.hpp +++ b/include/simgrid/kernel/resource/Action.hpp @@ -68,7 +68,7 @@ class XBT_PUBLIC Action { double cost_; Model* model_; - void* data_ = nullptr; /**< for your convenience */ + void* data_ = nullptr; /**< for your convenience - XBT_ATTRIB_DEPRECATED_v334 */ activity::ActivityImpl* activity_ = nullptr; /* LMM */ @@ -158,9 +158,15 @@ public: double get_finish_time() const { return finish_time_; } /** @brief Get the user data associated to the current action */ - void* get_data() const { return data_; } + XBT_ATTRIB_DEPRECATED_v334("Please manifest if you actually need this function") void* get_data() const + { + return data_; + } /** @brief Set the user data associated to the current action */ - void set_data(void* data) { data_ = data; } + XBT_ATTRIB_DEPRECATED_v334("Please manifest if you actually need this function") void set_data(void* data) + { + data_ = data; + } /** @brief Get the user data associated to the current action */ activity::ActivityImpl* get_activity() const { return activity_; } -- 2.20.1