Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added memory include #636

Merged
merged 1 commit into from
Sep 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion subt_ign/include/subt_ign/VisibilityTable.hh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#define SUBT_IGN_VISIBILITYTABLE_HH_

#include <map>
#include <memory>
#include <set>
#include <string>
#include <utility>
Expand Down Expand Up @@ -216,7 +217,7 @@ namespace subt
private: std::map<std::string, ignition::math::AxisAlignedBox> bboxes;

/// \brief A map of model name to its bounding box. Used for generating LUT
private: std::map<std::string,
private: std::map<std::string,
std::shared_ptr<fcl::CollisionObject>> collisionObjs;

/// \brief A map that stores 3D points an the vertex id in which are located
Expand Down