From b04a11697e30ad90db229445f9fa35172add366b Mon Sep 17 00:00:00 2001 From: Alexey Varyzgin Date: Tue, 2 Mar 2021 21:08:09 +0300 Subject: [PATCH] [VS2017] QueryState build error C4996 was fixed (#4547) * disable and cleanup interp and resample that is covered by interpolate * QueryState build error C4996 was fixed Co-authored-by: chenhuwa --- .../cpp_interfaces/base/ie_executable_network_base.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/inference-engine/src/plugin_api/cpp_interfaces/base/ie_executable_network_base.hpp b/inference-engine/src/plugin_api/cpp_interfaces/base/ie_executable_network_base.hpp index d659c912b6c..8d7dd27e21f 100644 --- a/inference-engine/src/plugin_api/cpp_interfaces/base/ie_executable_network_base.hpp +++ b/inference-engine/src/plugin_api/cpp_interfaces/base/ie_executable_network_base.hpp @@ -22,6 +22,7 @@ namespace InferenceEngine { +IE_SUPPRESS_DEPRECATED_START_WIN /** * @brief Executable network `noexcept` wrapper which accepts IExecutableNetworkInternal derived instance which can throw exceptions * @ingroup ie_dev_api_exec_network_api @@ -110,6 +111,7 @@ public: protected: ~ExecutableNetworkBase() override = default; }; +IE_SUPPRESS_DEPRECATED_END_WIN /** * @brief Create an execuable network public C++ object wrapper based on internal inplementation