Skip to content

Commit c187182

Browse files
committed
[clangd] Add a missing header guard for InsertionPoint.h
1 parent 6442b4d commit c187182

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

clang-tools-extra/clangd/refactor/InsertionPoint.h

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

9+
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_REFACTOR_INSERTIONPOINT_H
10+
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_REFACTOR_INSERTIONPOINT_H
11+
912
#include "clang/AST/DeclCXX.h"
1013
#include "clang/Basic/Specifiers.h"
1114
#include "clang/Tooling/Core/Replacement.h"
@@ -51,3 +54,5 @@ llvm::Expected<tooling::Replacement> insertDecl(llvm::StringRef Code,
5154

5255
} // namespace clangd
5356
} // namespace clang
57+
58+
#endif

0 commit comments

Comments
 (0)