Skip to content

Commit 84d5490

Browse files
authored
add missing <cstdint> includes to fix uint32_t type errors wrt compiler differences in handling standard headers (#613)
1 parent a04ede6 commit 84d5490

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

Diff for: examples/rl_sim_cpp/person.h

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#pragma once
2+
#include <cstdint>
23
#include <string>
34
#include <unordered_map>
45
/**

Diff for: examples/rl_sim_cpp/robot_joint.h

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#pragma once
2+
#include <cstdint>
23
#include <map>
34
#include <string>
45

Diff for: include/container_iterator.h

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#pragma once
22

3+
#include <cstdint>
34
#include <iterator>
45
#include <type_traits>
56
#include <vector>

Diff for: include/decision_response.h

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#include "ranking_response.h"
44

55
#include <cstddef>
6+
#include <cstdint>
67
#include <iterator>
78
#include <vector>
89

0 commit comments

Comments
 (0)