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
Issue: I get the following error building tagslam on ubuntu 20.04 using clang-12 and clang++-12
/home/brian/tagslam_root/src/tagslam/include/tagslam/sync_and_detect.h:146:46: error: cannot use incomplete type 'rosbag::View' as a range
for (const rosbag::MessageInstance &m: *view) {
^
/opt/ros/noetic/include/rosbag/bag.h:96:7: note: forward declaration of 'rosbag::View'
class View;
Issue: I get the following error building tagslam on ubuntu 20.04 using clang-12 and clang++-12
Solution: add
#include <rosbag/view.h>
hereThe text was updated successfully, but these errors were encountered: