From e7bbeeb25c657e17251012787e919c14695bc5c8 Mon Sep 17 00:00:00 2001 From: Esteve Fernandez Date: Fri, 6 Nov 2015 09:47:31 -0800 Subject: [PATCH] Fix cpplint warnings --- rcl/include/rcl/rcl.h | 8 ++++---- rcl/include/rcl/types.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/rcl/include/rcl/rcl.h b/rcl/include/rcl/rcl.h index 45613ad..5ee1fe9 100644 --- a/rcl/include/rcl/rcl.h +++ b/rcl/include/rcl/rcl.h @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -#ifndef RCL_RCL_RCL_H_ -#define RCL_RCL_RCL_H_ +#ifndef RCL__RCL_H_ +#define RCL__RCL_H_ #include // For bool #include // For size_t @@ -21,7 +21,7 @@ // For rosidl_message_type_support_t #include -#include "types.h" // For rcl_*_t types +#include "rcl/types.h" // For rcl_*_t types /// Global initialization for rcl; should be called once per process. rcl_ret_t @@ -151,4 +151,4 @@ rcl_get_next_any_executable( rcl_any_executable_t * any_executable, bool non_blocking); -#endif /* RCL_RCL_RCL_H_ */ +#endif // RCL__RCL_H_ diff --git a/rcl/include/rcl/types.h b/rcl/include/rcl/types.h index 258471e..d9135bb 100644 --- a/rcl/include/rcl/types.h +++ b/rcl/include/rcl/types.h @@ -12,8 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. -#ifndef RCL_RCL_TYPES_H_ -#define RCL_RCL_TYPES_H_ +#ifndef RCL__TYPES_H_ +#define RCL__TYPES_H_ #include @@ -46,7 +46,7 @@ typedef struct rcl_timer_info_t typedef struct rcl_executor_helper_t { - // TODO: fill with something + // TODO(wjwwood): fill with something } rcl_executor_helper_t; typedef struct rcl_any_executable_t @@ -55,4 +55,4 @@ typedef struct rcl_any_executable_t rcl_timer_info_t ** timer_info; } rcl_any_executable_t; -#endif /* RCL_RCL_TYPES_H_ */ +#endif // RCL__TYPES_H_