From 35ef70c5c8433d4709591cf8d8935798eb573243 Mon Sep 17 00:00:00 2001 From: Edward Shogulin Date: Tue, 27 Jul 2021 22:08:23 +0100 Subject: [PATCH] [LPT] Exception fix (#6824) --- .../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: