From 1eeaad3c829da484aef38408fdee40f9386a38c8 Mon Sep 17 00:00:00 2001 From: Alexander Perepelkin Date: Wed, 20 Jan 2021 15:17:29 +0300 Subject: [PATCH] Fix virtual inheritance for class PadLayerTest (#3914) --- .../plugin/shared/include/single_layer_tests/pad.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inference-engine/tests/functional/plugin/shared/include/single_layer_tests/pad.hpp b/inference-engine/tests/functional/plugin/shared/include/single_layer_tests/pad.hpp index c055254a389..effea88d354 100644 --- a/inference-engine/tests/functional/plugin/shared/include/single_layer_tests/pad.hpp +++ b/inference-engine/tests/functional/plugin/shared/include/single_layer_tests/pad.hpp @@ -28,7 +28,7 @@ typedef std::tuple< namespace LayerTestsDefinitions { class PadLayerTest : public testing::WithParamInterface, - public LayerTestsUtils::LayerTestsCommon { + virtual public LayerTestsUtils::LayerTestsCommon { public: static std::string getTestCaseName(testing::TestParamInfo obj); @@ -36,4 +36,4 @@ protected: void SetUp() override; }; -} // namespace LayerTestsDefinitions \ No newline at end of file +} // namespace LayerTestsDefinitions