From f393e2d9d1783c4a4d76ffd43b5136971f519e4e Mon Sep 17 00:00:00 2001 From: Inki Dae Date: Thu, 4 Jun 2020 17:00:14 +0900 Subject: [PATCH] Fix initializer list coding rule Change-Id: Id95bf653d7b6274c4803a6b240783905e96300ce Signed-off-by: Inki Dae --- src/inference_engine_mlapi.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/inference_engine_mlapi.cpp b/src/inference_engine_mlapi.cpp index bde2e92..ab36c9b 100644 --- a/src/inference_engine_mlapi.cpp +++ b/src/inference_engine_mlapi.cpp @@ -27,18 +27,18 @@ namespace InferenceEngineImpl { namespace MLAPIImpl { - InferenceMLAPI::InferenceMLAPI(void) - : mPluginType() - , mTargetDevice() - , mSingle() - , mDesignated_inputs() - , mDesignated_outputs() - , mInputProperty() - , mOutputProperty() - , mInputTensorBuffer() - , mOutputTensorBuffer() - , mInputTensorInfo() - , mOutputTensorInfo() + InferenceMLAPI::InferenceMLAPI(void) : + mPluginType(), + mTargetDevice(), + mSingle(), + mDesignated_inputs(), + mDesignated_outputs(), + mInputProperty(), + mOutputProperty(), + mInputTensorBuffer(), + mOutputTensorBuffer(), + mInputTensorInfo(), + mOutputTensorInfo() { LOGI("ENTER"); -- 2.34.1