From 58b1c0f5a041e099cd715ebac28f8f96fead936a Mon Sep 17 00:00:00 2001 From: Ilya Churaev Date: Tue, 30 May 2023 09:09:52 +0400 Subject: [PATCH] Suppress warnings for LPT --- src/common/low_precision_transformations/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/low_precision_transformations/CMakeLists.txt b/src/common/low_precision_transformations/CMakeLists.txt index d097acfaf89..d034b4894c1 100644 --- a/src/common/low_precision_transformations/CMakeLists.txt +++ b/src/common/low_precision_transformations/CMakeLists.txt @@ -4,6 +4,9 @@ set (TARGET_NAME "inference_engine_lp_transformations") +# Suppress warnings with FactoryRegistry autogenerated destructor +ov_deprecated_no_errors() + set(PUBLIC_HEADERS_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include") file(GLOB_RECURSE LIBRARY_SRC ${CMAKE_CURRENT_SOURCE_DIR}/src/*.cpp)