File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -500,15 +500,15 @@ bool TGLexer::LexInclude() {
500
500
// / SkipBCPLComment - Skip over the comment by finding the next CR or LF.
501
501
// / Or we may end up at the end of the buffer.
502
502
void TGLexer::SkipBCPLComment () {
503
- ++CurPtr; // skip the second slash.
503
+ ++CurPtr; // Skip the second slash.
504
504
auto EOLPos = CurBuf.find_first_of (" \r\n " , CurPtr - CurBuf.data ());
505
505
CurPtr = (EOLPos == StringRef::npos) ? CurBuf.end () : CurBuf.data () + EOLPos;
506
506
}
507
507
508
508
// / SkipCComment - This skips C-style /**/ comments. The only difference from C
509
509
// / is that we allow nesting.
510
510
bool TGLexer::SkipCComment () {
511
- ++CurPtr; // skip the star.
511
+ ++CurPtr; // Skip the star.
512
512
unsigned CommentDepth = 1 ;
513
513
514
514
while (true ) {
You can’t perform that action at this time.
0 commit comments