diff options
| author | Stefan Boberg <[email protected]> | 2021-09-09 11:24:01 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-09 11:24:01 +0200 |
| commit | b31a22359b1dafba877f8311f73e51216450209d (patch) | |
| tree | aaacb9243c7166ef3d2304e3f18070e4dae0af7c /zencore/filesystem.cpp | |
| parent | Merge branch 'main' of https://github.com/EpicGames/zen (diff) | |
| download | zen-b31a22359b1dafba877f8311f73e51216450209d.tar.xz zen-b31a22359b1dafba877f8311f73e51216450209d.zip | |
Fixed a number of unreferenced variable warnings
Diffstat (limited to 'zencore/filesystem.cpp')
| -rw-r--r-- | zencore/filesystem.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/zencore/filesystem.cpp b/zencore/filesystem.cpp index ec3de0306..09c2e7386 100644 --- a/zencore/filesystem.cpp +++ b/zencore/filesystem.cpp @@ -73,8 +73,6 @@ WipeDirectory(const wchar_t* DirPath) WIN32_FIND_DATAW FindData; HANDLE hFind = FindFirstFileW(Pattern.c_str(), &FindData); - bool AllOk = true; - if (hFind != nullptr) { do |