Build: Fix visibility of fields in Reader.h to be compiled with GCC 13 toolchain

This commit is contained in:
Catalin MARINCIA
2023-12-29 19:13:33 +02:00
committed by Yorik van Havre
parent f795f53b0a
commit 4813b9297b

View File

@@ -334,12 +334,15 @@ private:
bool _valid {false};
bool _verbose {true};
public:
struct FileEntry
{
std::string FileName;
Base::Persistence* Object;
};
std::vector<FileEntry> FileList;
private:
std::vector<std::string> FileNames;
std::bitset<32> StatusBits;