Fix svace: uninit variable of Execution (#6934)
author이춘석/On-Device Lab(SR)/Staff Engineer/삼성전자 <chunseok.lee@samsung.com>
Tue, 27 Aug 2019 05:45:49 +0000 (14:45 +0900)
committer오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Tue, 27 Aug 2019 05:45:49 +0000 (14:45 +0900)
- Fix WGID 405897
- Remove explicit initialzation

Signed-off-by: Chunseok Lee <chunseok.lee@samsung.com>
runtimes/neurun/core/src/exec/Execution.cc

index 26835ef..01114d8 100644 (file)
@@ -23,7 +23,7 @@ namespace neurun
 namespace exec
 {
 
-Execution::Execution(const std::shared_ptr<IExecutor> &executor) : _executor{executor}, _io_desc{}
+Execution::Execution(const std::shared_ptr<IExecutor> &executor) : _executor{executor}
 {
   _io_desc.inputs.resize(_executor->model().inputs.size());
   _io_desc.outputs.resize(_executor->model().outputs.size());