diff --git a/src/Mod/Robot/App/kdl_cp/tree.hpp b/src/Mod/Robot/App/kdl_cp/tree.hpp index 624aa0e7c3..092068c861 100644 --- a/src/Mod/Robot/App/kdl_cp/tree.hpp +++ b/src/Mod/Robot/App/kdl_cp/tree.hpp @@ -32,7 +32,7 @@ #include #ifdef KDL_USE_NEW_TREE_INTERFACE -#include +#include #endif //#ifdef KDL_USE_NEW_TREE_INTERFACE namespace KDL @@ -42,8 +42,8 @@ namespace KDL #ifdef KDL_USE_NEW_TREE_INTERFACE //We use smart pointers for managing tree nodes for now because //c++11 and unique_ptr support is not ubiquitous - typedef boost::shared_ptr TreeElementPtr; - typedef boost::shared_ptr TreeElementConstPtr; + typedef std::shared_ptr TreeElementPtr; + typedef std::shared_ptr TreeElementConstPtr; typedef std::map SegmentMap; typedef TreeElementPtr TreeElementType;