Skip to content

Commit 0cb962f

Browse files
committed
use standalone doc string and reinsate removed newline
This commit is a combination of two commits. I'm force pushing because the build bot had some problems with an (empty?) or whitespace-only commit during checkout. Hopefully it takes this one. Signed-off-by: Justin Stitt <[email protected]>
1 parent 55f52cb commit 0cb962f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

clang/include/clang/AST/Expr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4145,7 +4145,7 @@ class BinaryOperator : public Expr {
41454145
/// Does one of the subexpressions have the wraps attribute?
41464146
bool hasWrappingOperand(const ASTContext &Ctx) const;
41474147

4148-
/// How about the no_wraps attribute?
4148+
/// Does one of the subexpressions have the no_wraps attribute?
41494149
bool hasNonWrappingOperand(const ASTContext &Ctx) const;
41504150

41514151
protected:

clang/lib/Sema/SemaDeclAttr.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6963,6 +6963,7 @@ ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, const ParsedAttr &AL,
69636963
case ParsedAttr::AT_AvailableOnlyInDefaultEvalMethod:
69646964
handleAvailableOnlyInDefaultEvalMethod(S, D, AL);
69656965
break;
6966+
69666967
case ParsedAttr::AT_CountedBy:
69676968
case ParsedAttr::AT_CountedByOrNull:
69686969
case ParsedAttr::AT_SizedBy:

0 commit comments

Comments
 (0)