init duration timers

This commit is contained in:
Florian Lüke 2023-07-03 21:32:47 +02:00
parent b741bf50da
commit 54ab64668d

View file

@ -425,10 +425,10 @@ void listfile_parser_nng(
nng_msg *inputMsg = nullptr;
u32 outputMessageNumber = 0u;
std::chrono::microseconds tReceive;
std::chrono::microseconds tProcess;
std::chrono::microseconds tSend;
std::chrono::microseconds tTotal;
std::chrono::microseconds tReceive(0);
std::chrono::microseconds tProcess(0);
std::chrono::microseconds tSend(0);
std::chrono::microseconds tTotal(0);
auto tLastReport = std::chrono::steady_clock::now();
while (true)