Skip to content

Commit

Permalink
add missing <cstdint> includes to fix uint32_t type errors wrt compil…
Browse files Browse the repository at this point in the history
…er differences in handling standard headers (#613)
  • Loading branch information
v-jameslongo authored Nov 4, 2024
1 parent a04ede6 commit 84d5490
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/rl_sim_cpp/person.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#pragma once
#include <cstdint>
#include <string>
#include <unordered_map>
/**
Expand Down
1 change: 1 addition & 0 deletions examples/rl_sim_cpp/robot_joint.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#pragma once
#include <cstdint>
#include <map>
#include <string>

Expand Down
1 change: 1 addition & 0 deletions include/container_iterator.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <cstdint>
#include <iterator>
#include <type_traits>
#include <vector>
Expand Down
1 change: 1 addition & 0 deletions include/decision_response.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#include "ranking_response.h"

#include <cstddef>
#include <cstdint>
#include <iterator>
#include <vector>

Expand Down

0 comments on commit 84d5490

Please sign in to comment.