From 5639805b5870b25e49146b9505c7b9692194da88 Mon Sep 17 00:00:00 2001 From: Zero Fanker Date: Sat, 25 May 2024 09:39:50 -0400 Subject: [PATCH] silence compile warning again . --- 3rdParty/xcc/misc/cc_file.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3rdParty/xcc/misc/cc_file.h b/3rdParty/xcc/misc/cc_file.h index 2b23fa8..b60c7b5 100644 --- a/3rdParty/xcc/misc/cc_file.h +++ b/3rdParty/xcc/misc/cc_file.h @@ -159,7 +159,7 @@ public: return m_p; } - long long get_size() const + auto get_size() const { return m_size; } @@ -191,5 +191,5 @@ private: bool m_is_open = false; int m_p; const bool m_read_on_open; - long long m_size; + size_t m_size; };