-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Unable to override a non-ref-qualified virtual function declared in a Cpp1 library #694
Comments
Most common, I'd say. |
In C++, how is struct BaseClass {
virtual std::string get_info() const;
}; semantically different from struct BaseClass {
virtual std::string get_info() const&;
}; ? I guess I have the same question for the non-virtual case. |
Disclaimer: I'm writing down some thoughts I'm having around this topic. Please, express your corrections/extensions if any of these is incorrect or incomplete. There is a variety of ways member functions can be declared in Cpp1 with respect to ref-qualifiers.
It appears that Cpp2, as of today, lacks a way to express some of these. This might be a Good Thing as the intent is to simplify. @jcanizales I think there is no difference in semantics between the non ref-qualified member function and the lvalue ref-qualified one. They both have the implicit object type as an lvalue reference, or, put another way, they map to the same free-function counterpart. The difference is that (1) the non ref-qualified one cannot be defined as an overload when either of the ref-qualified ones is defined and (2) in the case of virtual functions (and this is the topic for which I initially created this ticket) overriding one (non ref-qualified) with the other (lvalue ref-qualified) is illegal; same goes for the other way around. @JohelEGP's proposal to emit non ref-qualified virtual functions would solve the problem I posed, yet I find it odd to have this different treatment between virtual and non-virtual functions and I fear it might hide some other issue. For one it suffers a similar, specular problem when the base class defines an lvalue ref-qualified virtual function, though it can be argued this might be a rare case in current C++ libraries. What I'd like to understand is whether it's feasible to save the usage of legacy Cpp1 libraries that require to inherit from their base classes and override member functions that have been defined in ways that might not be under Cpp2's control. All this preserving Cpp2's simplicity goal. |
Small thought: What if EVERY member function (virtual or otherwise) was emitted without ref-qualifiers? What consequences would that have? |
A function like |
I was under the impression that |
Not all non-static member functions need to lower with ref-qualifiers. |
Interesting. This sounds promising! |
Yeah, that works regardless of |
So there's the solution! |
In the meantime, it seems like we want to address this compatibility issue, and the simplest way to unbreak this is to not emit That may well even be the right long-term fix, because ISTM that Cpp1 ref-qualifiers inherently don't make sense for virtual functions... those qualifiers apply to |
Describe the bug
Not sure whether this applies as a bug, but it is a design decision that affects the way Cpp2 interacts with existing libraries and might get in the way of a gradual migration from a Cpp1 codebase to Cpp2.
The scenario is a Cpp2 type (e.g. new migrated code) that inherits from a Cpp1 class/struct (e.g. legacy/library code) with virtual functions declared with no ref-qualifier.
To Reproduce
This is the code in the Cpp1 header file.
Then a Cpp2 type is defined.
Compiling this example gives this error:
The reason is clear: Cpp2 emits member functions that have either an lvalue ref-qualifier (
const &
, when declared within this
;&
, when declared withinout this
) or an rvalue ref-qualifier (&&
, when declared withmove this
), yet the base class virtual function is declared with no qualifier hence the override is illegal and impossible. AFAIK no mechanism is available to declare the member function with no ref-qualifier to match the base class virtual function declaration and avoid the error.Additional context
The choice of always using an explicit ref-qualifier for member function is rather recent, the code where I noticed the issue was working fine until a few weeks ago. I'm not sure whether I'm missing something major here and this is a non-problem; perhaps I'm just ignorant of another way to arrange this.
If the problem is real I see a few scenarios to treat it.
this
in the member function declaration to avoid the ref-qualifier. I see some problem with the semantics in this case. For instance, saycopy this
is used, the meaning in common English of the keywordcopy
would be of no help andforward this
is probably even worse. In this respect the choice of C/C++ to stay away from keywords when possible and use operators, such as '&', devoid of any baggage in meaning, posed less problems.That's it. Please, forgive me for having taken such a large text to describe it.
The text was updated successfully, but these errors were encountered: