From d7722f24f335ffdf985ea1fd1b4acd51b2727778 Mon Sep 17 00:00:00 2001 From: Kevin Matz Date: Mon, 24 Apr 2023 16:40:37 -0400 Subject: [PATCH] init the timetag to the epoch --- protocol/osc/argument.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/osc/argument.h b/protocol/osc/argument.h index 8f174ac..591149e 100644 --- a/protocol/osc/argument.h +++ b/protocol/osc/argument.h @@ -135,7 +135,7 @@ struct int64 struct timetag : Argument { - timetag() : Argument('t') {}; + timetag() : Argument('t'), value(0) {}; std::chrono::time_point time() const; void setTime(std::chrono::time_point time = std::chrono::system_clock::now());