We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aad61b commit 14edd54Copy full SHA for 14edd54
tests/include/action_test_node.h
@@ -60,6 +60,7 @@ class AsyncActionTest : public AsyncActionNode
60
61
void setStartTimePoint(std::chrono::high_resolution_clock::time_point now)
62
{
63
+ // TODO add lock guard
64
std::cout << this->name() << " Setting Start Time: " << now.time_since_epoch().count() << std::endl;
65
66
start_time_ = now;
@@ -73,6 +74,8 @@ class AsyncActionTest : public AsyncActionNode
73
74
75
void setStopTimePoint(std::chrono::high_resolution_clock::time_point now)
76
77
78
+
79
std::cout << this->name() << " Setting Stop Time: " << now.time_since_epoch().count() << std::endl;
80
81
stop_time_ = now;
0 commit comments