Skip to content

Commit 39c739e

Browse files
[mlir][OpInterfacesGen][NFC] Add newline after traits declaration (llvm#85633)
Slightly improve the readability of the tablegen-generated code. Co-authored-by: Orest Chura <[email protected]>
1 parent 12b802a commit 39c739e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/tools/mlir-tblgen/OpInterfacesGen.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ void InterfaceGenerator::emitInterfaceDecl(const Interface &interface) {
533533
<< "struct " << interfaceTraitsName << " {\n";
534534
emitConceptDecl(interface);
535535
emitModelDecl(interface);
536-
os << "};";
536+
os << "};\n";
537537

538538
// Emit the derived trait for the interface.
539539
os << "template <typename " << valueTemplate << ">\n";

0 commit comments

Comments
 (0)