From 18f73a8adb4656dc92d6c1e3257e633900ba1377 Mon Sep 17 00:00:00 2001 From: craftablescience Date: Sat, 30 Jul 2022 11:53:11 -0400 Subject: [PATCH] fix: mark a variable not meant to be accessed private --- include/vpktool/VPK.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/vpktool/VPK.h b/include/vpktool/VPK.h index 7b988319..e50ecf44 100644 --- a/include/vpktool/VPK.h +++ b/include/vpktool/VPK.h @@ -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. @@ -132,6 +131,7 @@ struct VPK { std::vector archiveMD5Entries; private: FileInputStream reader; + bool isValid = true; }; } // namespace vpktool