Skip to content

Commit

Permalink
Fix cpplint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Esteve Fernandez committed Nov 6, 2015
1 parent 421d6fe commit e7bbeeb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions rcl/include/rcl/rcl.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
// 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 <stdbool.h> // For bool
#include <stddef.h> // For size_t

// For rosidl_message_type_support_t
#include <rosidl_generator_c/message_type_support.h>

#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
Expand Down Expand Up @@ -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_
8 changes: 4 additions & 4 deletions rcl/include/rcl/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 <rmw/types.h>

Expand Down Expand Up @@ -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
Expand All @@ -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_

0 comments on commit e7bbeeb

Please sign in to comment.