summaryrefslogtreecommitdiff
path: root/runtime/onert/core/src/ir/operation/Unpack.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/onert/core/src/ir/operation/Unpack.cc')
-rw-r--r--runtime/onert/core/src/ir/operation/Unpack.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/onert/core/src/ir/operation/Unpack.cc b/runtime/onert/core/src/ir/operation/Unpack.cc
index 67aa54ab5..185eddce3 100644
--- a/runtime/onert/core/src/ir/operation/Unpack.cc
+++ b/runtime/onert/core/src/ir/operation/Unpack.cc
@@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
+
#include "ir/operation/Unpack.h"
#include "ir/OperationVisitor.h"
@@ -25,7 +26,7 @@ namespace operation
void Unpack::accept(OperationVisitor &v) const { v.visit(*this); }
Unpack::Unpack(const OperandIndexSequence &inputs, const OperandIndexSequence &outputs,
const Param &param)
- : Operation{OperandConstraint::createExact(1u), inputs, outputs}, _param{param}
+ : Operation{OperandConstraint::createExact(1u), inputs, outputs}, _param{param}
{
}
} // namespace operation