It seems this problem has nothing to do with threads.
In C++ there is a difference in type between
void MyClass::Function()
{
// Do something
}
and
void Function1()
{
// Do something else
}
The difference being that the second function can be used whenever a function accepting no...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.