-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added
@noisy
metafunction - initial version
Note: This is the first metafunction that reflects and generates function bodies. This type metafunction makes each of the type's functions print its name and signature, so the programmer can see what functions are being called. This initial version ignores functions named `operator=` or with single-statement (or no) bodies. In future commits I intend to add support for: - `operator=`, that inserts new statements only after the member object value-set statement - functions with single-statement or no bodies, that are first converted to compound-statement bodies
- Loading branch information
Showing
6 changed files
with
726 additions
and
558 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
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,4 +1,4 @@ | ||
|
||
cppfront compiler v0.8.0 Build 9B01:1726 | ||
cppfront compiler v0.8.0 Build 9B08:1148 | ||
SPDX-License-Identifier Apache-2.0 WITH LLVM-exception | ||
Copyright (c) 2022-2024 Herb Sutter |
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 @@ | ||
"9B01:1726" | ||
"9B08:1148" |
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.