From: 이한종/On-Device Lab(SR)/Engineer/삼성전자 Date: Mon, 12 Aug 2019 00:49:52 +0000 (+0900) Subject: [neurun] Remove empty override in ParamChecker (#6454) X-Git-Tag: submit/tizen/20190812.062103~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c931605cb04172c67381082330896e357ef968f9;p=platform%2Fcore%2Fml%2Fnnfw.git [neurun] Remove empty override in ParamChecker (#6454) Remove empty override(AddNode) in ParamChecker. Signed-off-by: Hanjoung Lee --- diff --git a/runtimes/neurun/core/src/compiler/ParamChecker.cc b/runtimes/neurun/core/src/compiler/ParamChecker.cc index ec5a17f..10bfa1e 100644 --- a/runtimes/neurun/core/src/compiler/ParamChecker.cc +++ b/runtimes/neurun/core/src/compiler/ParamChecker.cc @@ -29,10 +29,5 @@ void ParamChecker::operator()() [&](const model::OperationIndex &, const model::Operation &node) { node.accept(*this); }); } -void ParamChecker::visit(const model::operation::AddNode &) -{ - // DO NOTHING -} - } // namespace compiler } // namespace neurun diff --git a/runtimes/neurun/core/src/compiler/ParamChecker.h b/runtimes/neurun/core/src/compiler/ParamChecker.h index f144e3c..82f4669 100644 --- a/runtimes/neurun/core/src/compiler/ParamChecker.h +++ b/runtimes/neurun/core/src/compiler/ParamChecker.h @@ -62,9 +62,6 @@ public: */ bool haveNoneConstParam(void) { return _nonConstParam; } -public: - void visit(const model::operation::AddNode &node) override; - private: const std::shared_ptr _model; bool _nonConstParam{false};