Unverified Commit 7f1a89e3 authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Update utils.cpp

parent 5d46f3fc
...@@ -72,7 +72,7 @@ bool ends_with(std::string const &value, std::string const &ending) ...@@ -72,7 +72,7 @@ bool ends_with(std::string const &value, std::string const &ending)
// source: https://stackoverflow.com/a/37416569/192001 // source: https://stackoverflow.com/a/37416569/192001
std::size_t count_files(const std::string &folder) std::size_t count_files(const std::string &folder)
{ {
counter counter = 0; size_t counter = 0;
WIN32_FIND_DATA ffd; WIN32_FIND_DATA ffd;
HANDLE hFind = INVALID_HANDLE_VALUE; HANDLE hFind = INVALID_HANDLE_VALUE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment