Skip to content

Commit 39c902a

Browse files
marbreagozillon
authored andcommitted
[mlir][EmitC] Harmonize include guard (NFC)
Harmonizes the include guard as it is rather uncommon within the MLIR subproject to append an underscore to include guards.
1 parent 858982e commit 39c902a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mlir/include/mlir/Conversion/SCFToEmitC/SCFToEmitC.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef MLIR_CONVERSION_SCFTOEMITC_SCFTOEMITC_H_
10-
#define MLIR_CONVERSION_SCFTOEMITC_SCFTOEMITC_H_
9+
#ifndef MLIR_CONVERSION_SCFTOEMITC_SCFTOEMITC_H
10+
#define MLIR_CONVERSION_SCFTOEMITC_SCFTOEMITC_H
1111

1212
#include <memory>
1313

@@ -26,4 +26,4 @@ std::unique_ptr<Pass> createConvertSCFToEmitCPass();
2626

2727
} // namespace mlir
2828

29-
#endif // MLIR_CONVERSION_SCFTOEMITC_SCFTOEMITC_H_
29+
#endif // MLIR_CONVERSION_SCFTOEMITC_SCFTOEMITC_H

0 commit comments

Comments
 (0)