木头云 874e0b25bc fix(msvc): Fix C4138 warning by adding space before commented parameter names
ISSUE:
MSVC compiler reports warning C4138: '*/' found outside of comment
for patterns like 'void */*p*/' where the pointer asterisk is immediately
followed by a comment start.

AFFECTED FILES:
- include/libipc/mem/new.h (line 30)
- src/libipc/platform/win/mutex.h (line 54)
- src/libipc/platform/win/semaphore.h (line 53)

CHANGES:
Changed 'type */*param*/' to 'type * /*param*/' (added space before comment)

Examples:
- void */*p*/       → void * /*p*/
- char const */*name*/ → char const * /*name*/

This resolves the MSVC warning while maintaining code functionality
and keeping the commented-out parameter names for documentation.
2025-12-03 08:13:44 +00:00
..
concur Add intrusive_stack 2025-12-03 08:11:57 +00:00
imp refactor(uninitialized): Improve construct() overload resolution 2025-12-03 08:13:44 +00:00
mem fix(msvc): Fix C4138 warning by adding space before commented parameter names 2025-12-03 08:13:44 +00:00
buffer.h IPC_EXPORT => LIBIPC_EXPORT 2025-12-03 08:11:24 +00:00
condition.h IPC_EXPORT => LIBIPC_EXPORT 2025-12-03 08:11:24 +00:00
def.h Start refactoring memory management, adding memory_resource 2025-12-03 08:11:57 +00:00
ipc.h IPC_EXPORT => LIBIPC_EXPORT 2025-12-03 08:11:24 +00:00
mutex.h IPC_EXPORT => LIBIPC_EXPORT 2025-12-03 08:11:24 +00:00
rw_lock.h Update rw_lock.h for #143 2025-04-20 13:58:42 +08:00
semaphore.h IPC_EXPORT => LIBIPC_EXPORT 2025-12-03 08:11:24 +00:00
shm.h IPC_EXPORT => LIBIPC_EXPORT 2025-12-03 08:11:24 +00:00