Skip to content

Commit a4521c6

Browse files
committed
[NFC] Remove unnecessary radar reference.
1 parent 190c395 commit a4521c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Parse/ParseDecl.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2768,8 +2768,8 @@ parseIdentifierDeclName(Parser &P, Identifier &Result, SourceLoc &Loc,
27682768

27692769
if (P.Tok.is(tok::integer_literal) || P.Tok.is(tok::floating_literal) ||
27702770
(P.Tok.is(tok::unknown) && isdigit(P.Tok.getText()[0]))) {
2771-
// Per rdar://problem/32316666, using numbers for identifiers is a common
2772-
// error for beginners, so it's worth handling this in a special way.
2771+
// Using numbers for identifiers is a common error for beginners, so it's
2772+
// worth handling this in a special way.
27732773
P.diagnose(P.Tok, diag::number_cant_start_decl_name, DeclKindName);
27742774

27752775
// Pretend this works as an identifier, which shouldn't be observable since

0 commit comments

Comments
 (0)