Skip to content

Commit 8f52813

Browse files
committed
Missing includes
Signed-off-by: Stephen Brawner <[email protected]>
1 parent 31df555 commit 8f52813

File tree

6 files changed

+9
-0
lines changed

6 files changed

+9
-0
lines changed

rcl_yaml_param_parser/include/rcl_yaml_param_parser/types.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
#ifndef RCL_YAML_PARAM_PARSER__TYPES_H_
1515
#define RCL_YAML_PARAM_PARSER__TYPES_H_
1616

17+
#include <stdint.h>
18+
1719
#include "rcutils/allocator.h"
1820
#include "rcutils/types/string_array.h"
1921

rcl_yaml_param_parser/src/add_to_arrays.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515
#include "./impl/add_to_arrays.h"
1616

17+
#include "rcutils/error_handling.h"
18+
1719
#define ADD_VALUE_TO_SIMPLE_ARRAY(val_array, value, value_type, allocator) \
1820
do { \
1921
if (NULL == val_array->values) { \

rcl_yaml_param_parser/src/namespace.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
#include "./impl/namespace.h"
1616

17+
#include "rcutils/error_handling.h"
1718
#include "rcutils/strdup.h"
1819

1920
rcutils_ret_t add_name_to_ns(

rcl_yaml_param_parser/src/node_params.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
#include "./impl/types.h"
1717
#include "./impl/yaml_variant.h"
1818

19+
#include "rcutils/error_handling.h"
20+
1921
rcutils_ret_t node_params_init(
2022
rcl_node_params_t * node_params,
2123
const rcutils_allocator_t allocator)

rcl_yaml_param_parser/src/parse.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#include <errno.h>
1616

1717
#include "rcutils/allocator.h"
18+
#include "rcutils/error_handling.h"
1819
#include "rcutils/strdup.h"
1920

2021
#include "./impl/add_to_arrays.h"

rcl_yaml_param_parser/src/yaml_variant.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
// limitations under the License.
1414

1515
#include "rcutils/allocator.h"
16+
#include "rcutils/error_handling.h"
1617
#include "rcutils/strdup.h"
1718
#include "rcutils/types.h"
1819

0 commit comments

Comments
 (0)