From 39ca570661bffb51df5dd6aa8cc396254fe269b2 Mon Sep 17 00:00:00 2001 From: Edward Shogulin Date: Tue, 27 Jul 2021 15:30:24 +0300 Subject: [PATCH] [LPT] Exception fix --- .../include/low_precision/common/ie_lpt_exception.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inference-engine/src/low_precision_transformations/include/low_precision/common/ie_lpt_exception.hpp b/inference-engine/src/low_precision_transformations/include/low_precision/common/ie_lpt_exception.hpp index 7057fc1f59764a..e59ec61c8f4349 100644 --- a/inference-engine/src/low_precision_transformations/include/low_precision/common/ie_lpt_exception.hpp +++ b/inference-engine/src/low_precision_transformations/include/low_precision/common/ie_lpt_exception.hpp @@ -19,7 +19,7 @@ namespace ngraph { namespace pass { namespace low_precision { -class LP_TRANSFORMATIONS_API Exception : std::exception { +class LP_TRANSFORMATIONS_API Exception : public std::exception { std::shared_ptr buffer; mutable std::string buffer_str; public: