From: Krasimir Georgiev Date: Wed, 1 Aug 2018 11:48:04 +0000 (+0000) Subject: [clang-format] Add @private to the list of jsdoc annotations X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=63b2fd7e8207d36a02a3f708369bf5070facc626;p=clang [clang-format] Add @private to the list of jsdoc annotations Reviewers: mprobst Reviewed By: mprobst Subscribers: acoomans, cfe-commits Differential Revision: https://reviews.llvm.org/D50138 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@338519 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Format/BreakableToken.cpp b/lib/Format/BreakableToken.cpp index 4e05eb3f22..fc2f891e08 100644 --- a/lib/Format/BreakableToken.cpp +++ b/lib/Format/BreakableToken.cpp @@ -514,7 +514,7 @@ unsigned BreakableBlockComment::getContentStartColumn(unsigned LineIndex, const llvm::StringSet<> BreakableBlockComment::ContentIndentingJavadocAnnotations = { "@param", "@return", "@returns", "@throws", "@type", "@template", - "@see", "@deprecated", "@define", "@exports", "@mods", + "@see", "@deprecated", "@define", "@exports", "@mods", "@private", }; unsigned BreakableBlockComment::getContentIndent(unsigned LineIndex) const {