Skip to content

Commit

Permalink
fixup && format
Browse files Browse the repository at this point in the history
  • Loading branch information
zyn0217 committed Jan 26, 2024
1 parent 386c17d commit 5618763
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clang/docs/ReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ Bug Fixes to AST Handling
- Fixed a bug where Template Instantiation failed to handle Lambda Expressions
with certain types of Attributes.
(`#76521 <https://github.com/llvm/llvm-project/issues/76521>`_)
- Fixed a bug where variables referenced by requires-clauses inside
- Fixed a bug where variables referenced by requires-clauses inside
nested generic lambdas were not properly injected into the constraint scope.
(`#73418 <https://github.com/llvm/llvm-project/issues/73418>`_)

Expand Down
2 changes: 1 addition & 1 deletion clang/test/SemaTemplate/concepts-lambda.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ void foo() {
sizeof...(params);
[](auto... pack) {
return sizeof...(pack);
}(params);
}(params...);
}
{ return false; }(y);
}(x);
Expand Down

0 comments on commit 5618763

Please sign in to comment.