From 60068396a3def045d3821822bb547298c723ff2b Mon Sep 17 00:00:00 2001 From: Kory Draughn Date: Fri, 6 Dec 2024 09:10:15 -0500 Subject: [PATCH] [#8042] Deprecate unused global variables in resource manager implementation. --- server/core/include/irods/irods_resource_manager.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/core/include/irods/irods_resource_manager.hpp b/server/core/include/irods/irods_resource_manager.hpp index 28d1b13514..2f863af4d7 100644 --- a/server/core/include/irods/irods_resource_manager.hpp +++ b/server/core/include/irods/irods_resource_manager.hpp @@ -19,9 +19,9 @@ namespace irods // =-=-=-=-=-=-=- /// @brief special resource for local file system operations only - extern const std::string LOCAL_USE_ONLY_RESOURCE; - extern const std::string LOCAL_USE_ONLY_RESOURCE_VAULT; - extern const std::string LOCAL_USE_ONLY_RESOURCE_TYPE; + [[deprecated]] extern const std::string LOCAL_USE_ONLY_RESOURCE; + [[deprecated]] extern const std::string LOCAL_USE_ONLY_RESOURCE_VAULT; + [[deprecated]] extern const std::string LOCAL_USE_ONLY_RESOURCE_TYPE; class resource_manager { public: