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
struct A
{
sigc::signal<void(int, float) > sign;
};
struct B
{
B (A & a)
{
a.sign.connect(sigc::bind<0>(sigc::mem_fun(*this, &B::func), true));
}
void func(bool b, int i, float f)
{
}
};
Got the error:
'sigc::bind_functor<0,T_functor,bool>::bound_': cannot access private member declared in class 'sigc::bind_functor<0,T_functor,bool>'
Visual Studio 2017 (all updates installed)
libsig version: 3.0
C++: ISO C++17 Standard (/std:c++17)