C++ Mathematical Expression Library (ExprTk) https://www.partow.net/programming/exprtk/index.html

This commit is contained in:
ArashPartow 2024-01-01 00:00:00 +00:00 committed by Arash Partow
parent dd7b1ff4ad
commit ddafbfe57a
1 changed files with 2 additions and 2 deletions

View File

@ -43436,8 +43436,8 @@ namespace exprtk
#if defined(_MSC_VER) || defined(_WIN32) || defined(__WIN32__) || defined(WIN32) #if defined(_MSC_VER) || defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
timer() timer()
: in_use_(false) : in_use_(false)
, start_time_{ 0 } , start_time_{ {0, 0} }
, stop_time_ { 0 } , stop_time_ { {0, 0} }
{ {
QueryPerformanceFrequency(&clock_frequency_); QueryPerformanceFrequency(&clock_frequency_);
} }