Skip to content

Commit

Permalink
fix: mark a variable not meant to be accessed private
Browse files Browse the repository at this point in the history
  • Loading branch information
craftablescience committed Jul 30, 2022
1 parent d804316 commit 18f73a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/vpktool/VPK.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ struct VPK {
explicit operator bool() const;
bool operator!() const;

bool isValid = true;
bool isDirVPK = false;
unsigned int headerSize = 0;
/// Gets the filename.
Expand Down Expand Up @@ -132,6 +131,7 @@ struct VPK {
std::vector<ArchiveMD5SectionEntry> archiveMD5Entries;
private:
FileInputStream reader;
bool isValid = true;
};

} // namespace vpktool

0 comments on commit 18f73a8

Please sign in to comment.