File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,14 @@ using namespace zenoh;
23
23
struct Stats {
24
24
volatile unsigned long count = 0 ;
25
25
volatile unsigned long finished_rounds = 0 ;
26
- std::chrono::_V2:: steady_clock::time_point start = {};
27
- std::chrono::_V2:: steady_clock::time_point first_start = {};
28
- std::chrono::_V2:: steady_clock::time_point end = {};
26
+ std::chrono::steady_clock::time_point start = {};
27
+ std::chrono::steady_clock::time_point first_start = {};
28
+ std::chrono::steady_clock::time_point end = {};
29
29
30
30
void operator ()(const Sample &) {
31
31
if (count == 0 ) {
32
32
start = std::chrono::steady_clock::now ();
33
- if (first_start == std::chrono::_V2:: steady_clock::time_point ()) {
33
+ if (first_start == std::chrono::steady_clock::time_point ()) {
34
34
first_start = start;
35
35
}
36
36
count++;
You can’t perform that action at this time.
0 commit comments