diff options
author | Kirill Bobyrev <kbobyrev.opensource@gmail.com> | 2018-08-14 16:03:32 +0000 |
---|---|---|
committer | Kirill Bobyrev <kbobyrev.opensource@gmail.com> | 2018-08-14 16:03:32 +0000 |
commit | 8e35f1e7cbd771145bc2658ca97018d56870c196 (patch) | |
tree | 07bfda744a5fd2f9d5e592e15c97ce1de8fb237c /clang-tools-extra/clangd/CodeCompletionStrings.h | |
parent | ed55138247744e0189a6ee4673305842c34034a2 (diff) | |
download | bcm5719-llvm-8e35f1e7cbd771145bc2658ca97018d56870c196.tar.gz bcm5719-llvm-8e35f1e7cbd771145bc2658ca97018d56870c196.zip |
NFC: Enforce good formatting across multiple clang-tools-extra files
This patch improves readability of multiple files in clang-tools-extra
and enforces LLVM Coding Guidelines.
Reviewed by: ioeric
Differential Revision: https://reviews.llvm.org/D50707
llvm-svn: 339687
Diffstat (limited to 'clang-tools-extra/clangd/CodeCompletionStrings.h')
-rw-r--r-- | clang-tools-extra/clangd/CodeCompletionStrings.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang-tools-extra/clangd/CodeCompletionStrings.h b/clang-tools-extra/clangd/CodeCompletionStrings.h index dac4ba56676..7b66c5c9915 100644 --- a/clang-tools-extra/clangd/CodeCompletionStrings.h +++ b/clang-tools-extra/clangd/CodeCompletionStrings.h @@ -5,12 +5,13 @@ // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // -//===---------------------------------------------------------------------===// +//===----------------------------------------------------------------------===// // // Functions for retrieving code completion information from // `CodeCompletionString`. // -//===---------------------------------------------------------------------===// +//===----------------------------------------------------------------------===// + #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_CODECOMPLETIONSTRINGS_H #define LLVM_CLANG_TOOLS_EXTRA_CLANGD_CODECOMPLETIONSTRINGS_H @@ -70,4 +71,4 @@ std::string getReturnType(const CodeCompletionString &CCS); } // namespace clangd } // namespace clang -#endif +#endif // LLVM_CLANG_TOOLS_EXTRA_CLANGD_CODECOMPLETIONSTRINGS_H |