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
// [...]voidadd_methods() const{
auto& t = module_;
DEBUG_MSG("Adding wrapper for void MySpace::f(MySpace::C *) (" __HERE__ ")");
// signature to use in the veto list: void MySpace::f(MySpace::C *)// defined in ./A.h:20:8
t.method("MySpace!f", static_cast<void (*)(MySpace::C *) >(&MySpace::f));
DEBUG_MSG("Adding wrapper for void MySpace::g(C *[]) (" __HERE__ ")");
// signature to use in the veto list: void MySpace::g(C *[])// defined in ./A.h:21:8
t.method("MySpace!g", static_cast<void (*)(C *[]) >(&MySpace::g));
DEBUG_MSG("Adding wrapper for void MySpace::h(MySpace::C **) (" __HERE__ ")");
// signature to use in the veto list: void MySpace::h(MySpace::C **)// defined in ./A.h:22:8
t.method("MySpace!h", static_cast<void (*)(MySpace::C **) >(&MySpace::h));
}
// [...]
Here the function g is not correctly wrapped, as the namespace for C is omitted.
The text was updated successfully, but these errors were encountered:
MWE
source file
relevant codegen
Here the function
g
is not correctly wrapped, as the namespace for C is omitted.The text was updated successfully, but these errors were encountered: