Skip to content

Commit 373a63c

Browse files
authored
Added missing chrono includes (#2854)
Signed-off-by: Alejandro Hernandez Cordero <[email protected]>
1 parent 6c47883 commit 373a63c

File tree

14 files changed

+14
-1
lines changed

14 files changed

+14
-1
lines changed

rclcpp/test/benchmark/benchmark_executor.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
#include <chrono>
1516
#include <memory>
1617
#include <string>
1718
#include <utility>

rclcpp/test/rclcpp/executors/test_events_queue.cpp

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

1515
#include <gtest/gtest.h>
1616

17+
#include <chrono>
1718
#include <memory>
1819

1920
#include "rclcpp/experimental/executors/events_executor/events_executor_event_types.hpp"

rclcpp/test/rclcpp/executors/test_waitable.cpp

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 <atomic>
16+
#include <chrono>
1617
#include <functional>
1718
#include <memory>
1819
#include <thread>

rclcpp/test/rclcpp/test_generic_pubsub.cpp

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

1616
#include <gmock/gmock.h>
1717

18+
#include <chrono>
1819
#include <future>
1920
#include <memory>
2021
#include <string>

rclcpp/test/rclcpp/test_logger_service.cpp

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

1515
#include <gtest/gtest.h>
1616

17+
#include <chrono>
1718
#include <memory>
1819
#include <string>
1920
#include <vector>

rclcpp/test/rclcpp/test_parameter_service.cpp

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

1515
#include <gtest/gtest.h>
1616

17+
#include <chrono>
1718
#include <memory>
1819
#include <string>
1920
#include <utility>

rclcpp/test/rclcpp/test_service.cpp

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

1515
#include <gtest/gtest.h>
1616

17+
#include <chrono>
1718
#include <string>
1819
#include <memory>
1920
#include <utility>

rclcpp/test/rclcpp/test_service_introspection.cpp

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

18+
#include <chrono>
1819
#include <map>
1920
#include <string>
2021

rclcpp/test/rclcpp/test_wait_for_message.cpp

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

1515
#include <gtest/gtest.h>
1616

17+
#include <chrono>
1718
#include <memory>
1819
#include <string>
1920
#include <vector>

rclcpp_action/test/test_client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
#include <chrono>
1516
#include <future>
1617
#include <map>
1718
#include <memory>
1819
#include <string>
1920
#include <utility>
2021
#include <thread>
21-
#include <chrono>
2222

2323
#include "gtest/gtest.h"
2424

0 commit comments

Comments
 (0)