-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…afunctions Fix `@struct` to generate a type that's actually usable as a struct, by providing a metafunction a way to disable all member function generation Make member initialization diagnostics clearer and more actionable, with better source location attribution Lay more groundwork for generative metafunctions like `enum` and `flag_enum` that replace the entire type's contents, including to move more semantic checks to `sema.h` where they belong and will run later
- Loading branch information
Showing
10 changed files
with
530 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Microsoft (R) C/C++ Optimizing Compiler Version 19.35.32217.1 for x86 | ||
Microsoft (R) C/C++ Optimizing Compiler Version 19.36.32534 for x86 | ||
Copyright (C) Microsoft Corporation. All rights reserved. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
"8613:1951" | ||
"8617:0816" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
This needs
!= s.npos
, like thecontains
member function (since C++23): https://eel.is/c++draft/string.view#lib:contains,basic_string_view.