Fixed a bunch of clang-tidy warnings.

This commit is contained in:
2024-08-18 13:07:38 +02:00
parent d73fa25ed8
commit 9f011952c2
8 changed files with 46 additions and 39 deletions

View File

@@ -107,7 +107,7 @@ StreamError StackedFileSystemAdapter::open(const fs::path& path, FileOpenMode mo
{
for (auto& adapter : adapters_)
{
FileInfo fileInfo = adapter->getFileInfo(path);
const FileInfo fileInfo = adapter->getFileInfo(path);
if (fileInfo.exists) {
return adapter->open(path, mode, outStream);
}