From: <sv...@op...> - 2024-12-08 09:33:14
|
Author: manx Date: Sun Dec 8 10:33:02 2024 New Revision: 22480 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22480 Log: [Ref] UnRAR: Silence Clang warning. Modified: trunk/OpenMPT/include/unrar/OpenMPT.txt trunk/OpenMPT/include/unrar/largepage.hpp Modified: trunk/OpenMPT/include/unrar/OpenMPT.txt ============================================================================== --- trunk/OpenMPT/include/unrar/OpenMPT.txt Sat Dec 7 19:55:03 2024 (r22479) +++ trunk/OpenMPT/include/unrar/OpenMPT.txt Sun Dec 8 10:33:02 2024 (r22480) @@ -10,9 +10,9 @@ never be used in OpenMPT's context. The following files have been modified: -extract.cpp, filcreat.cpp, file.cpp, filefn.cpp, find.cpp, match.cpp, -os.hpp, pathfn.cpp, rardefs.hpp, rdwrfn.cpp, secpassword.cpp, volume.cpp, -win32acl.cpp, win32lnk.cpp +extract.cpp, filcreat.cpp, file.cpp, filefn.cpp, find.cpp, largepage.hpp, +match.cpp, os.hpp, pathfn.cpp, rardefs.hpp, rdwrfn.cpp, secpassword.cpp, +volume.cpp, win32acl.cpp, win32lnk.cpp For building, premake is used to generate Visual Studio project files. See ../build/premake/ for details. Modified: trunk/OpenMPT/include/unrar/largepage.hpp ============================================================================== --- trunk/OpenMPT/include/unrar/largepage.hpp Sat Dec 7 19:55:03 2024 (r22479) +++ trunk/OpenMPT/include/unrar/largepage.hpp Sun Dec 8 10:33:02 2024 (r22480) @@ -10,6 +10,7 @@ bool delete_large(void *Addr); #ifdef _WIN_ALL std::vector<void*> LargeAlloc; + [[maybe_unused]] // OPENMPT ADDITION SIZE_T PageSize; #endif bool UseLargePages; |