From: Joel Rosdahl Date: Tue, 7 Jul 2020 14:35:54 +0000 (+0200) Subject: Make Result::write_embedded_file_entry static X-Git-Tag: v4.0~343 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dbefbf932fe99884f90ef0c83f353bbac7b32b23;p=thirdparty%2Fccache.git Make Result::write_embedded_file_entry static --- diff --git a/src/Result.hpp b/src/Result.hpp index ff80174b1..ec495aa18 100644 --- a/src/Result.hpp +++ b/src/Result.hpp @@ -104,9 +104,9 @@ private: std::vector> m_entries_to_write; void do_finalize(); - void write_embedded_file_entry(CacheEntryWriter& writer, - const std::string& path, - uint64_t file_size); + static void write_embedded_file_entry(CacheEntryWriter& writer, + const std::string& path, + uint64_t file_size); void write_raw_file_entry(const std::string& path, uint32_t entry_number); };