This repository was archived by the owner on Aug 5, 2026. It is now read-only.
Add regression test for void* overload priority - #239
Open
conrade-ctc wants to merge 1 commit into
Open
Conversation
|
Can we split the build system changes u to a separate pr? |
Author
that was unintentionally included, did a complete diff and picked it all up in this PR. I'll slim it down, apologies :( |
A const void* constructor declared before a converting one used to win, so the argument arrived as the proxy's address rather than the converted value.
conrade-ctc
force-pushed
the
conrade/voidp-overload-priority-test
branch
from
July 31, 2026 13:54
8822141 to
0643e37
Compare
Author
done, clean just test update now FYI, just want to point out, this will be red until compiler-research/CPyCppyy#225 lands and this CI run again after that. |
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
A
const void*constructor declared before a converting one used to win, so the argument arrived as the proxy's address rather than the converted value.Fix: compiler-research/CPyCppyy#225
Context: compiler-research/CppInterOp#1078