Fix Mac Build

This commit is contained in:
wheremyfoodat 2023-03-14 01:21:32 +02:00
parent 1a4379f67f
commit a6c35202f7

View file

@ -107,7 +107,7 @@ struct ArchiveSession {
FSPath path;
bool isOpen;
ArchiveSession(ArchiveBase* archive, const FSPath& filePath, bool isOpen = true) : archive(archive), path(path), isOpen(isOpen) {}
ArchiveSession(ArchiveBase* archive, const FSPath& filePath, bool isOpen = true) : archive(archive), path(filePath), isOpen(isOpen) {}
};
// Represents a file descriptor obtained from OpenFile. If the optional is nullopt, opening the file failed.