mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-23 05:40:09 +00:00
[clangd] Fix some header guard names, NFC
Per the LLVM code style, there should be no trailing `_` on the header guard name.
This commit is contained in:
parent
f1f1b60c7b
commit
48e6ff9ad3
@ -10,8 +10,8 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_AST_H_
|
||||
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_AST_H_
|
||||
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_AST_H
|
||||
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_AST_H
|
||||
|
||||
#include "index/SymbolID.h"
|
||||
#include "clang/AST/Decl.h"
|
||||
@ -238,4 +238,4 @@ bool isExpandedFromParameterPack(const ParmVarDecl *D);
|
||||
} // namespace clangd
|
||||
} // namespace clang
|
||||
|
||||
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANGD_AST_H_
|
||||
#endif // LLVM_CLANG_TOOLS_EXTRA_CLANGD_AST_H
|
||||
|
@ -15,8 +15,8 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_TRANSPORT_H_
|
||||
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_TRANSPORT_H_
|
||||
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_TRANSPORT_H
|
||||
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_TRANSPORT_H
|
||||
|
||||
#include "Feature.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
|
@ -11,8 +11,8 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_CONTEXT_H_
|
||||
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_CONTEXT_H_
|
||||
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_CONTEXT_H
|
||||
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_CONTEXT_H
|
||||
|
||||
#include "llvm/ADT/STLExtras.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
|
@ -6,8 +6,8 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_MEMORYTREE_H_
|
||||
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_MEMORYTREE_H_
|
||||
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_MEMORYTREE_H
|
||||
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_MEMORYTREE_H
|
||||
|
||||
#include "Trace.h"
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
|
@ -14,8 +14,8 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_TRACE_H_
|
||||
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_TRACE_H_
|
||||
#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_TRACE_H
|
||||
#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_SUPPORT_TRACE_H
|
||||
|
||||
#include "support/Context.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
|
Loading…
Reference in New Issue
Block a user