From 85843ff5c91f0d94eeab765253aa1831fc833cf9 Mon Sep 17 00:00:00 2001 From: CarlTSpeak Date: Tue, 5 Aug 2025 15:55:36 +0100 Subject: [PATCH] Fixed cross-platform: removed MS-specific macro --- src/windows-emulator/syscalls/file.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/windows-emulator/syscalls/file.cpp b/src/windows-emulator/syscalls/file.cpp index 86fcb7e9..ace40c1d 100644 --- a/src/windows-emulator/syscalls/file.cpp +++ b/src/windows-emulator/syscalls/file.cpp @@ -1078,11 +1078,11 @@ namespace syscalls ULONG maximum_instances, ULONG inbound_quota, ULONG outbound_quota, emulator_object default_timeout) { - UNREFERENCED_PARAMETER(desired_access); - UNREFERENCED_PARAMETER(share_access); - UNREFERENCED_PARAMETER(create_disposition); - UNREFERENCED_PARAMETER(create_options); - UNREFERENCED_PARAMETER(object_attributes); + (void)desired_access; + (void)share_access; + (void)create_disposition; + (void)create_options; + (void)object_attributes; std::u16string file_name;