Skip to content

Commit

Permalink
fix template closing indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
MiguelCompany committed Jul 13, 2018
1 parent 1429803 commit 9b3be5d
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions rmw_fastrtps_dynamic_cpp/src/type_support_common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,34 +32,35 @@
#include "rmw_fastrtps_dynamic_cpp/identifier.hpp"

using MessageTypeSupport_c = rmw_fastrtps_dynamic_cpp::MessageTypeSupport<
rosidl_typesupport_introspection_c__MessageMembers>;
rosidl_typesupport_introspection_c__MessageMembers
>;
using MessageTypeSupport_cpp = rmw_fastrtps_dynamic_cpp::MessageTypeSupport<
rosidl_typesupport_introspection_cpp::MessageMembers
>;
>;
using TypeSupport_c = rmw_fastrtps_dynamic_cpp::TypeSupport<
rosidl_typesupport_introspection_c__MessageMembers
>;
>;
using TypeSupport_cpp = rmw_fastrtps_dynamic_cpp::TypeSupport<
rosidl_typesupport_introspection_cpp::MessageMembers
>;
>;

using RequestTypeSupport_c = rmw_fastrtps_dynamic_cpp::RequestTypeSupport<
rosidl_typesupport_introspection_c__ServiceMembers,
rosidl_typesupport_introspection_c__MessageMembers
>;
>;
using RequestTypeSupport_cpp = rmw_fastrtps_dynamic_cpp::RequestTypeSupport<
rosidl_typesupport_introspection_cpp::ServiceMembers,
rosidl_typesupport_introspection_cpp::MessageMembers
>;
>;

using ResponseTypeSupport_c = rmw_fastrtps_dynamic_cpp::ResponseTypeSupport<
rosidl_typesupport_introspection_c__ServiceMembers,
rosidl_typesupport_introspection_c__MessageMembers
>;
>;
using ResponseTypeSupport_cpp = rmw_fastrtps_dynamic_cpp::ResponseTypeSupport<
rosidl_typesupport_introspection_cpp::ServiceMembers,
rosidl_typesupport_introspection_cpp::MessageMembers
>;
>;

bool
using_introspection_c_typesupport(const char * typesupport_identifier);
Expand Down

0 comments on commit 9b3be5d

Please sign in to comment.