[Mlir-commits] [mlir] e4a5467 - [MLIR][LSP][NFC] Fix a header guard (#84862)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Mon Mar 11 20:02:35 PDT 2024


Author: Walter Erquinigo
Date: 2024-03-11T23:02:32-04:00
New Revision: e4a546756c15a609be2f65d99c8b2be13ca9ddbf

URL: https://github.com/llvm/llvm-project/commit/e4a546756c15a609be2f65d99c8b2be13ca9ddbf
DIFF: https://github.com/llvm/llvm-project/commit/e4a546756c15a609be2f65d99c8b2be13ca9ddbf.diff

LOG: [MLIR][LSP][NFC] Fix a header guard (#84862)

This header guard is wrong and conflicts with the one from Transport.h

Added: 
    

Modified: 
    mlir/include/mlir/Tools/lsp-server-support/SourceMgrUtils.h

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Tools/lsp-server-support/SourceMgrUtils.h b/mlir/include/mlir/Tools/lsp-server-support/SourceMgrUtils.h
index 969058b0228895..9ed8326a602e6c 100644
--- a/mlir/include/mlir/Tools/lsp-server-support/SourceMgrUtils.h
+++ b/mlir/include/mlir/Tools/lsp-server-support/SourceMgrUtils.h
@@ -11,8 +11,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef MLIR_TOOLS_LSPSERVERSUPPORT_TRANSPORT_H
-#define MLIR_TOOLS_LSPSERVERSUPPORT_TRANSPORT_H
+#ifndef MLIR_TOOLS_LSPSERVERSUPPORT_SOURCEMGRUTILS_H
+#define MLIR_TOOLS_LSPSERVERSUPPORT_SOURCEMGRUTILS_H
 
 #include "mlir/Tools/lsp-server-support/Protocol.h"
 #include "llvm/Support/SourceMgr.h"


        


More information about the Mlir-commits mailing list