From efe9e88bd36ff1f1e342a326ec76b55fea6eebb1 Mon Sep 17 00:00:00 2001 From: Arjun P Date: Mon, 21 Mar 2022 15:19:30 +0000 Subject: [PATCH] [MLIR][Presburger] IntegerRelation.h: Fix header guard --- mlir/include/mlir/Analysis/Presburger/IntegerRelation.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mlir/include/mlir/Analysis/Presburger/IntegerRelation.h b/mlir/include/mlir/Analysis/Presburger/IntegerRelation.h index dc9c9b9..f8f06b8 100644 --- a/mlir/include/mlir/Analysis/Presburger/IntegerRelation.h +++ b/mlir/include/mlir/Analysis/Presburger/IntegerRelation.h @@ -12,8 +12,8 @@ // //===----------------------------------------------------------------------===// -#ifndef MLIR_ANALYSIS_PRESBURGER_INTEGERPOLYHEDRON_H -#define MLIR_ANALYSIS_PRESBURGER_INTEGERPOLYHEDRON_H +#ifndef MLIR_ANALYSIS_PRESBURGER_INTEGERRELATION_H +#define MLIR_ANALYSIS_PRESBURGER_INTEGERRELATION_H #include "mlir/Analysis/Presburger/Fraction.h" #include "mlir/Analysis/Presburger/Matrix.h" @@ -564,4 +564,4 @@ public: } // namespace presburger } // namespace mlir -#endif // MLIR_ANALYSIS_PRESBURGER_INTEGERPOLYHEDRON_H +#endif // MLIR_ANALYSIS_PRESBURGER_INTEGERRELATION_H -- 2.7.4