Remove a comment I accidentally added in r227581. No behavior change.

llvm-svn: 227777
This commit is contained in:
Nico Weber 2015-02-02 04:18:38 +00:00
parent 15be546140
commit 10d02b5604
1 changed files with 1 additions and 2 deletions

View File

@ -2509,8 +2509,7 @@ bool Parser::ParseUnqualifiedId(CXXScopeSpec &SS, bool EnteringContext,
// If the user wrote ~T::T, correct it to T::~T.
DeclaratorScopeObj DeclScopeObj(*this, SS);
if (!TemplateSpecified && //!ColonIsSacred &&
NextToken().is(tok::coloncolon)) {
if (!TemplateSpecified && NextToken().is(tok::coloncolon)) {
// Don't let ParseOptionalCXXScopeSpecifier() "correct"
// `int A; struct { ~A::A(); };` to `int A; struct { ~A:A(); };`,
// it will confuse this recovery logic.