1
0
Fork 0

init the timetag to the epoch

This commit is contained in:
Kevin Matz 2023-04-24 16:40:37 -04:00
parent fa8b0482da
commit d7722f24f3
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ struct int64
struct timetag
: Argument
{
timetag() : Argument('t') {};
timetag() : Argument('t'), value(0) {};
std::chrono::time_point<std::chrono::system_clock> time() const;
void setTime(std::chrono::time_point<std::chrono::system_clock> time = std::chrono::system_clock::now());