Error:
cpp:543:65: error: cannot convert ‘OpenRAVE::UserDataPtr {aka boost::shared_ptrOpenRAVE::UserData}’ to ‘bool’ in initialization
Line:
|
bool useTrimesh = trajopt::GetUserData(*body, "bt_use_trimesh"); |
Fix:
bool useTrimesh = bool(trajopt::GetUserData(*body, "bt_use_trimesh"));
Error:
cpp:543:65: error: cannot convert ‘OpenRAVE::UserDataPtr {aka boost::shared_ptrOpenRAVE::UserData}’ to ‘bool’ in initialization
Line:
trajopt/src/trajopt/bullet_collision_checker.cpp
Line 543 in 9c634c0
Fix:
bool useTrimesh = bool(trajopt::GetUserData(*body, "bt_use_trimesh"));