call to non-static member function without an object argument

原因:

std::async(&SLAM::SaveDebugCloud(), __node);

改成以下即可:

std::async(&SLAM::SaveDebugCloud, __node);

你可能感兴趣的:(软件,c++)