summaryrefslogtreecommitdiff
path: root/runtime/onert/core/src/ir/operation/Gather.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/onert/core/src/ir/operation/Gather.cc')
-rw-r--r--runtime/onert/core/src/ir/operation/Gather.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/runtime/onert/core/src/ir/operation/Gather.cc b/runtime/onert/core/src/ir/operation/Gather.cc
index 11d46e75b..e0c4630a0 100644
--- a/runtime/onert/core/src/ir/operation/Gather.cc
+++ b/runtime/onert/core/src/ir/operation/Gather.cc
@@ -15,9 +15,6 @@
*/
#include "ir/operation/Gather.h"
-
-#include <cassert>
-
#include "ir/OperationVisitor.h"
namespace onert
@@ -31,7 +28,7 @@ void Gather::accept(OperationVisitor &v) const { v.visit(*this); }
Gather::Gather(const OperandIndexSequence &inputs, const OperandIndexSequence &outputs,
const Param &param)
- : Operation{OperandConstraint::createExact(2u), inputs, outputs}, _param{param}
+ : Operation{OperandConstraint::createExact(2u), inputs, outputs}, _param{param}
{
}