From 896ff9b7c0fdf1fee6dd0f53be6bc254d230a51a Mon Sep 17 00:00:00 2001 From: Borislav Stanimirov Date: Tue, 25 Apr 2023 22:26:38 +0300 Subject: [PATCH] Fix MinGW build. Fixes #12 --- include/picobench/picobench.hpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/picobench/picobench.hpp b/include/picobench/picobench.hpp index 9c261de..0adaa5c 100644 --- a/include/picobench/picobench.hpp +++ b/include/picobench/picobench.hpp @@ -1,4 +1,4 @@ -// picobench v2.04 +// picobench v2.05 // https://github.com/iboB/picobench // // A micro microbenchmarking library in a single header file @@ -30,6 +30,7 @@ // // VERSION HISTORY // +// 2.05 (2023-04-26) Fixed MinGW build // 2.04 (2023-04-12) Added CLI args to run specific benchmarks or suites // 2.03 (2023-03-21) * Added PICOBENCH_UNIQUE_SYM_SUFFIX // * Fixed several warnings @@ -122,8 +123,8 @@ # include #endif -#define PICOBENCH_VERSION 2.04 -#define PICOBENCH_VERSION_STR "2.04" +#define PICOBENCH_VERSION 2.05 +#define PICOBENCH_VERSION_STR "2.05" #if defined(PICOBENCH_DEBUG) # include @@ -1352,7 +1353,7 @@ class runner : public registry auto p = line; while (true) { - auto q = strchr(p, ','); + const char* q = strchr(p, ','); if (!q) q = p + strlen(p); names.emplace_back(p, int(q - p)); if (!*q) break;