From 3a7439563880eaf0899509fb5d54f9a5ec74c2de Mon Sep 17 00:00:00 2001 From: Ilya Churaev Date: Wed, 17 May 2023 11:31:01 +0400 Subject: [PATCH] Mark some legacy API as deprecated (#17469) * Mark some legacy API as deprecated * Try to fix some issues * Fixed some warnings * Disable deprecation warnings for GNA * Fixed some warnings * Disable deprecation errors for all plugins * Suppress some warnings * Suppress some warnings * Suppress deprecated for tests * Mark all contend as suppressed * Try to fix extensions * Suppress more warnings * Suppress warnings for transformations * Global suppress of deprecation warnings * FIxed some warnings * Fixed comments * Create macro for deprecation API * Fixed data tests --- legacy/include/legacy/ie_layers.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/legacy/include/legacy/ie_layers.h b/legacy/include/legacy/ie_layers.h index e8d6a40f3576ad..54c345e0fde052 100644 --- a/legacy/include/legacy/ie_layers.h +++ b/legacy/include/legacy/ie_layers.h @@ -417,12 +417,11 @@ using CNNLayerPtr = std::shared_ptr; */ using CNNLayerWeakPtr = std::weak_ptr; -IE_SUPPRESS_DEPRECATED_END - CNNLayerWeakPtr& getCreatorLayer(const DataPtr& data); std::map& getInputTo(const DataPtr& data); std::map& getInputTo(Data* data); +IE_SUPPRESS_DEPRECATED_END _IE_SUPPRESS_DEPRECATED_START_MSVC