From a9c2af1c5fd0124bfd370eeb834caca2389c4a09 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 9 Aug 2024 09:33:33 -0500 Subject: [PATCH] updated build system --- support/src/utils/file.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/src/utils/file.cpp b/support/src/utils/file.cpp index 1f9ce7a4..f7d825e1 100644 --- a/support/src/utils/file.cpp +++ b/support/src/utils/file.cpp @@ -29,7 +29,7 @@ namespace { [[nodiscard]] auto remove_directory_recursively(std::string_view path) -> bool { #if defined(_WIN32) - WIN32_FIND_DATA fd{}; + WIN32_FIND_DATAA fd{}; auto search = repertory::utils::path::combine(path, {"*.*"}); auto find = ::FindFirstFileA(search.c_str(), &fd); if (find != INVALID_HANDLE_VALUE) {