[clang-format] Document the StartOfTokenColumn parameter, NFC

llvm-svn: 305293
This commit is contained in:
Krasimir Georgiev 2017-06-13 14:58:55 +00:00
parent b707e7f391
commit 54ef4bafbe
1 changed files with 4 additions and 0 deletions

View File

@ -43,6 +43,10 @@ public:
/// \brief Replaces the whitespace in front of \p Tok. Only call once for
/// each \c AnnotatedToken.
///
/// \p StartOfTokenColumn is the column at which the token will start after
/// this replacement. It is needed for determining how \p Spaces is turned
/// into tabs and spaces for some format styles.
void replaceWhitespace(FormatToken &Tok, unsigned Newlines, unsigned Spaces,
unsigned StartOfTokenColumn,
bool InPPDirective = false);