From 5c6fb5e20896984dfd8d8b540b46da80e27f134d Mon Sep 17 00:00:00 2001 From: Inki Dae Date: Fri, 8 May 2020 17:27:20 +0900 Subject: [PATCH] Clean up class member initialization Change-Id: I29328408fe8f7495ba71ef26e8df08f72a0d4109 Signed-off-by: Inki Dae --- src/inference_engine_common_impl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/inference_engine_common_impl.cpp b/src/inference_engine_common_impl.cpp index ee69405..f1bd550 100755 --- a/src/inference_engine_common_impl.cpp +++ b/src/inference_engine_common_impl.cpp @@ -41,11 +41,11 @@ namespace Common { InferenceEngineCommon::InferenceEngineCommon() : mSelectedBackendEngine(INFERENCE_BACKEND_NONE), - mProfiler(nullptr), + mProfiler(), mUseProfiler(false), mProfilerDumpType(IE_PROFILER_DUMP_MIN), - mBackendModule(nullptr), - mBackendHandle(nullptr) + mBackendModule(), + mBackendHandle() { LOGI("ENTER"); LOGI("LEAVE"); -- 2.34.1