From 0f71a19071d731265817d937d9b1373a91390b8b Mon Sep 17 00:00:00 2001 From: Yan Xu Date: Thu, 11 Jan 2024 06:56:26 -0500 Subject: [PATCH] fix clang format Signed-off-by: Yan Xu --- src/Dialect/ONNX/DialectBuilder.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Dialect/ONNX/DialectBuilder.hpp b/src/Dialect/ONNX/DialectBuilder.hpp index e7712c19c7..2df39afd98 100644 --- a/src/Dialect/ONNX/DialectBuilder.hpp +++ b/src/Dialect/ONNX/DialectBuilder.hpp @@ -34,11 +34,11 @@ struct OnnxBuilder : DialectBuilder { // Create operation and infer shape. template - OnnxOpType createOpAndInferShapes(Args &&...args) const; + OnnxOpType createOpAndInferShapes(Args &&... args) const; template OnnxOpType createTypedOpAndInferShapes( - mlir::Type result_ty, Args &&...args) const; + mlir::Type result_ty, Args &&... args) const; // ONNXAddOp mlir::Value add(mlir::Value A, mlir::Value B) const;