Skip to content

Commit

Permalink
Missing includes
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Brawner <[email protected]>
  • Loading branch information
brawner committed Oct 6, 2020
1 parent 31df555 commit 8f52813
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rcl_yaml_param_parser/include/rcl_yaml_param_parser/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
#ifndef RCL_YAML_PARAM_PARSER__TYPES_H_
#define RCL_YAML_PARAM_PARSER__TYPES_H_

#include <stdint.h>

#include "rcutils/allocator.h"
#include "rcutils/types/string_array.h"

Expand Down
2 changes: 2 additions & 0 deletions rcl_yaml_param_parser/src/add_to_arrays.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

#include "./impl/add_to_arrays.h"

#include "rcutils/error_handling.h"

#define ADD_VALUE_TO_SIMPLE_ARRAY(val_array, value, value_type, allocator) \
do { \
if (NULL == val_array->values) { \
Expand Down
1 change: 1 addition & 0 deletions rcl_yaml_param_parser/src/namespace.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

#include "./impl/namespace.h"

#include "rcutils/error_handling.h"
#include "rcutils/strdup.h"

rcutils_ret_t add_name_to_ns(
Expand Down
2 changes: 2 additions & 0 deletions rcl_yaml_param_parser/src/node_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
#include "./impl/types.h"
#include "./impl/yaml_variant.h"

#include "rcutils/error_handling.h"

rcutils_ret_t node_params_init(
rcl_node_params_t * node_params,
const rcutils_allocator_t allocator)
Expand Down
1 change: 1 addition & 0 deletions rcl_yaml_param_parser/src/parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
#include <errno.h>

#include "rcutils/allocator.h"
#include "rcutils/error_handling.h"
#include "rcutils/strdup.h"

#include "./impl/add_to_arrays.h"
Expand Down
1 change: 1 addition & 0 deletions rcl_yaml_param_parser/src/yaml_variant.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
// limitations under the License.

#include "rcutils/allocator.h"
#include "rcutils/error_handling.h"
#include "rcutils/strdup.h"
#include "rcutils/types.h"

Expand Down

0 comments on commit 8f52813

Please sign in to comment.