From ddafbfe57a05077835548fc4ca70c21c9bb60691 Mon Sep 17 00:00:00 2001 From: ArashPartow Date: Mon, 1 Jan 2024 00:00:00 +0000 Subject: [PATCH] C++ Mathematical Expression Library (ExprTk) https://www.partow.net/programming/exprtk/index.html --- exprtk.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exprtk.hpp b/exprtk.hpp index 653108c..9e0cf6f 100644 --- a/exprtk.hpp +++ b/exprtk.hpp @@ -43436,8 +43436,8 @@ namespace exprtk #if defined(_MSC_VER) || defined(_WIN32) || defined(__WIN32__) || defined(WIN32) timer() : in_use_(false) - , start_time_{ 0 } - , stop_time_ { 0 } + , start_time_{ {0, 0} } + , stop_time_ { {0, 0} } { QueryPerformanceFrequency(&clock_frequency_); }