You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
If class Base and class Derived : public Base are wrapped, with Base::foo() and Derived::bar() in them, the generated stub lists both foo and bar under Derived separately, instead of having class Derived(Base).
I'm not sure this matters at all for what the purpose of stubs is, but would certainly be nicer and a lot less stub code to fix up after generation.
The text was updated successfully, but these errors were encountered:
If
class Base
andclass Derived : public Base
are wrapped, withBase::foo()
andDerived::bar()
in them, the generated stub lists bothfoo
andbar
underDerived
separately, instead of havingclass Derived(Base)
.I'm not sure this matters at all for what the purpose of stubs is, but would certainly be nicer and a lot less stub code to fix up after generation.
The text was updated successfully, but these errors were encountered: