Skip to content

Commit

Permalink
[Clang] [NFC] Remove debug printing
Browse files Browse the repository at this point in the history
  • Loading branch information
Sirraide committed May 28, 2024
1 parent ef67f31 commit 0b2094c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions clang/lib/Sema/SemaStmtAttr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -684,10 +684,8 @@ ExprResult Sema::ActOnCXXAssumeAttr(Stmt *St, const ParsedAttr &A,
}

if (!getLangOpts().CPlusPlus23 &&
A.getSyntax() == AttributeCommonInfo::AS_CXX11) {
llvm::dbgs() << "Syntax: " << int(A.getSyntax()) << "\n";
A.getSyntax() == AttributeCommonInfo::AS_CXX11)
Diag(A.getLoc(), diag::ext_cxx23_attr) << A << Range;
}

return Assumption;
}
Expand Down

0 comments on commit 0b2094c

Please sign in to comment.