Skip to content

Commit

Permalink
Add missing include of chrono where std::chrono is used
Browse files Browse the repository at this point in the history
  • Loading branch information
traversaro authored Feb 28, 2025
1 parent f247640 commit 5978293
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions XSensMVN/test/testCalibrator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

#include "xme.h"

#include <chrono>
#include <thread>

int main(int argc, const char* argv[])
{
// Create a licence object
Expand Down
1 change: 1 addition & 0 deletions devices/HapticGlove/src/HapticGlove.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#include <yarp/os/RpcServer.h>

#include <assert.h>
#include <chrono>
#include <cmath>
#include <map>
#include <mutex>
Expand Down
1 change: 1 addition & 0 deletions devices/HumanStateProvider/IKWorkerPool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

#include <iDynTree/Core/EigenHelpers.h>

#include <chrono>
#include <thread>

const std::string IKLogPrefix = "IKWorkerPool :";
Expand Down
1 change: 1 addition & 0 deletions devices/Paexo/src/Paexo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include <yarp/os/TypedReaderCallback.h>

#include <assert.h>
#include <chrono>
#include <mutex>
#include <stdexcept>
#include <stdio.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

#include <array>
#include <numeric>
#include <chrono>
#include <cmath>

#include <thread>
Expand Down

0 comments on commit 5978293

Please sign in to comment.