mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-28 17:19:34 +08:00
Fixed clang warning
This commit is contained in:
@@ -108,7 +108,7 @@ std::size_t count_files(const std::string &folder)
|
||||
}
|
||||
|
||||
struct dirent *ep;
|
||||
while (ep = readdir(dp))
|
||||
while ((ep = readdir(dp)) != nullptr)
|
||||
{
|
||||
if (ep->d_name[0] != '.')
|
||||
counter++;
|
||||
|
Reference in New Issue
Block a user