[neurun] Remove empty override in ParamChecker (#6454)
author이한종/On-Device Lab(SR)/Engineer/삼성전자 <hanjoung.lee@samsung.com>
Mon, 12 Aug 2019 00:49:52 +0000 (09:49 +0900)
committer오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Mon, 12 Aug 2019 00:49:52 +0000 (09:49 +0900)
Remove empty override(AddNode) in ParamChecker.

Signed-off-by: Hanjoung Lee <hanjoung.lee@samsung.com>
runtimes/neurun/core/src/compiler/ParamChecker.cc
runtimes/neurun/core/src/compiler/ParamChecker.h

index ec5a17f..10bfa1e 100644 (file)
@@ -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
index f144e3c..82f4669 100644 (file)
@@ -62,9 +62,6 @@ public:
    */
   bool haveNoneConstParam(void) { return _nonConstParam; }
 
-public:
-  void visit(const model::operation::AddNode &node) override;
-
 private:
   const std::shared_ptr<graph::Graph> _model;
   bool _nonConstParam{false};