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

Gazebo7 fixes #381

Merged
merged 4 commits into from
Jan 16, 2016
Merged

Gazebo7 fixes #381

merged 4 commits into from
Jan 16, 2016

Commits on Jan 13, 2016

  1. Fix gazebo7 build errors

    The SensorPtr types have changed from boost:: pointers
    to std:: pointers,
    which requires boost::dynamic_pointer_cast to change to
    std::dynamic_pointer_cast.
    A helper macro is added that adds a `using` statement
    corresponding to the correct type of dynamic_pointer_cast.
    This macro should be narrowly scoped to protect
    other code.
    scpeters committed Jan 13, 2016
    Configuration menu
    Copy the full SHA
    194ebf8 View commit details
    Browse the repository at this point in the history
  2. Add missing boost header

    Some boost headers were remove from gazebo7 header files
    and gazebo_ros_joint_state_publisher.cpp was using it
    implicitly.
    scpeters committed Jan 13, 2016
    Configuration menu
    Copy the full SHA
    a27311b View commit details
    Browse the repository at this point in the history
  3. Fix compiler error with SetHFOV

    In gazebo7, the rendering::Camera::SetHFOV function
    is overloaded with a potential for ambiguity,
    as reported in the following issue:
    https://bitbucket.org/osrf/gazebo/issues/1830
    This fixes the build by explicitly defining the
    Angle type.
    scpeters committed Jan 13, 2016
    Configuration menu
    Copy the full SHA
    ce0ab10 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2016

  1. gazebo_ros_utils.h: include gazebo_config.h

    Make sure to include gazebo_config.h,
    which defines the GAZEBO_MAJOR_VERSION macro
    scpeters committed Jan 16, 2016
    Configuration menu
    Copy the full SHA
    ac994e7 View commit details
    Browse the repository at this point in the history