forked from OSchip/llvm-project
[clang-format] Fix LanguageKind comments.
Summary: With the introduction of LK_ObjC, the comment line for LK_Cpp became obsolete. Reviewers: djasper Reviewed By: djasper Subscribers: cfe-commits, klimek Differential Revision: https://reviews.llvm.org/D29033 llvm-svn: 292796
This commit is contained in:
parent
1d5855b107
commit
9b8fb2cf0c
|
@ -459,13 +459,13 @@ struct FormatStyle {
|
|||
enum LanguageKind {
|
||||
/// Do not use.
|
||||
LK_None,
|
||||
/// Should be used for C, C++, ObjectiveC, ObjectiveC++.
|
||||
/// Should be used for C, C++.
|
||||
LK_Cpp,
|
||||
/// Should be used for Java.
|
||||
LK_Java,
|
||||
/// Should be used for JavaScript.
|
||||
LK_JavaScript,
|
||||
/// Should be used for ObjC code.
|
||||
/// Should be used for ObjectiveC, ObjectiveC++.
|
||||
LK_ObjC,
|
||||
/// Should be used for Protocol Buffers
|
||||
/// (https://developers.google.com/protocol-buffers/).
|
||||
|
|
Loading…
Reference in New Issue