Skip to content

Commit

Permalink
Fix include order for cpplint (#493)
Browse files Browse the repository at this point in the history
Relates to ament/ament_lint#324

Signed-off-by: Jacob Perron <[email protected]>
  • Loading branch information
jacobperron authored Jan 12, 2022
1 parent b50fd75 commit e72b13c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test_rclcpp/test/test_services_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include <rclcpp/rclcpp.hpp>

#include <test_rclcpp/srv/add_two_ints.hpp>

#include <memory>
#include <utility>

#include "rclcpp/rclcpp.hpp"

#include "test_rclcpp/srv/add_two_ints.hpp"

void handle_add_two_ints_noreqid(
const std::shared_ptr<test_rclcpp::srv::AddTwoInts::Request> request,
std::shared_ptr<test_rclcpp::srv::AddTwoInts::Response> response)
Expand Down

0 comments on commit e72b13c

Please sign in to comment.