From 7f1a89e3f6eb355c484950ebea7fccf2a51b3e19 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 15 Sep 2019 18:49:19 +0300 Subject: [PATCH] Update utils.cpp --- tests/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils.cpp b/tests/utils.cpp index 5a136adc..5d7a0494 100644 --- a/tests/utils.cpp +++ b/tests/utils.cpp @@ -72,7 +72,7 @@ bool ends_with(std::string const &value, std::string const &ending) // source: https://stackoverflow.com/a/37416569/192001 std::size_t count_files(const std::string &folder) { - counter counter = 0; + size_t counter = 0; WIN32_FIND_DATA ffd; HANDLE hFind = INVALID_HANDLE_VALUE;