Skip to content

Commit eb36394

Browse files
committed
[NFC] make member function final to match all the others.
1 parent ddd6b7b commit eb36394

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

flang/lib/Optimizer/Dialect/FIRDialect.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ struct FIRInlinerInterface : public mlir::DialectInlinerInterface {
4949
valuesToRepl[it.index()].replaceAllUsesWith(it.value());
5050
}
5151

52-
mlir::Operation *
53-
materializeCallConversion(mlir::OpBuilder &builder, mlir::Value input,
54-
mlir::Type resultType,
55-
mlir::Location loc) const override {
52+
mlir::Operation *materializeCallConversion(mlir::OpBuilder &builder,
53+
mlir::Value input,
54+
mlir::Type resultType,
55+
mlir::Location loc) const final {
5656
return builder.create<fir::ConvertOp>(loc, resultType, input);
5757
}
5858
};

0 commit comments

Comments
 (0)