Skip to content

Commit

Permalink
Use int rather than int64_t
Browse files Browse the repository at this point in the history
  • Loading branch information
Bidski committed Nov 3, 2023
1 parent 8425292 commit 44bf405
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions tests/dsl/emit/Delay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,7 @@ namespace {
std::vector<std::string> events; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables)

/// @brief Test units are the time units the test is performed in
#ifdef __QNX__
using TestUnits = std::chrono::duration<long long, std::ratio<1, 20>>;
#else
using TestUnits = std::chrono::duration<int64_t, std::ratio<1, 20>>;
#endif
using TestUnits = std::chrono::duration<int, std::ratio<1, 20>>;
/// @brief Perform this many different time points for the test
constexpr int test_loops = 5;

Expand Down

0 comments on commit 44bf405

Please sign in to comment.