Skip to content
Snippets Groups Projects
Unverified Commit c8366034 authored by Louis Montaut's avatar Louis Montaut
Browse files

fwd: fix backward compat of `hpp::fcl` namespace

parent 83ad9dc1
No related branches found
No related tags found
No related merge requests found
......@@ -135,7 +135,6 @@ class CollisionGeometry;
typedef shared_ptr<CollisionGeometry> CollisionGeometryPtr_t;
typedef shared_ptr<const CollisionGeometry> CollisionGeometryConstPtr_t;
class Transform3s;
using Transform3f = Transform3s; // For backward compatibility
class AABB;
......@@ -147,7 +146,11 @@ typedef shared_ptr<OcTree> OcTreePtr_t;
typedef shared_ptr<const OcTree> OcTreeConstPtr_t;
} // namespace coal
// For backward compatibility
namespace hpp::fcl = coal;
namespace hpp {
namespace fcl {
using namespace coal;
using Transform3f = Transform3s; // For backward compatibility
} // namespace fcl
} // namespace hpp
#endif // COAL_FWD_HH
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment