diff options
author | Jacek Olesiak <jolesiak@google.com> | 2018-02-06 12:12:00 +0000 |
---|---|---|
committer | Jacek Olesiak <jolesiak@google.com> | 2018-02-06 12:12:00 +0000 |
commit | 022765de662ae841b3927cfb4152fa3fe875cf15 (patch) | |
tree | 270c78e4475d408077c5506537f43b1121fe0b63 /clang/lib/Format/ContinuationIndenter.h | |
parent | a79d62d2f5a9dfbe5e5e406b3586080596c48313 (diff) | |
download | bcm5719-llvm-022765de662ae841b3927cfb4152fa3fe875cf15.tar.gz bcm5719-llvm-022765de662ae841b3927cfb4152fa3fe875cf15.zip |
Test commit - fixing a comment.
Summary: A test commit.
Reviewers: krasimir, benhamilton
Reviewed By: krasimir
Subscribers: klimek, cfe-commits
Differential Revision: https://reviews.llvm.org/D42901
llvm-svn: 324338
Diffstat (limited to 'clang/lib/Format/ContinuationIndenter.h')
-rw-r--r-- | clang/lib/Format/ContinuationIndenter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Format/ContinuationIndenter.h b/clang/lib/Format/ContinuationIndenter.h index c257ded0ebf..bb2b7320fd4 100644 --- a/clang/lib/Format/ContinuationIndenter.h +++ b/clang/lib/Format/ContinuationIndenter.h @@ -314,8 +314,8 @@ struct ParenState { /// the same token. bool HasMultipleNestedBlocks : 1; - // \brief The start of a nested block (e.g. lambda introducer in C++ or - // "function" in JavaScript) is not wrapped to a new line. + /// \brief The start of a nested block (e.g. lambda introducer in C++ or + /// "function" in JavaScript) is not wrapped to a new line. bool NestedBlockInlined : 1; bool operator<(const ParenState &Other) const { |