-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Demangle explicitly named object parameters
This is a patch that allows for the ability to demangle code like: ``` struct Foo { void bar(this Foo && self); }; ``` An example mangling is `_ZNH1S3fooES_` which then demangles to `S::foo(this S)`. The proposal can be found here: itanium-cxx-abi/cxx-abi#148
- Loading branch information
1 parent
15bbde1
commit d1b6b2f
Showing
2 changed files
with
97 additions
and
21 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