木头云 cc33f73eec 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-12 07:04:31 +00:00
..
circ Update platform-specific feature macros to new interfaces in imp 2025-12-12 07:04:31 +00:00
imp Fix fmt function to handle null pointers and return empty string 2025-12-12 07:04:31 +00:00
mem Replace custom hash struct with std::hash in unordered_map definition 2025-12-12 07:04:31 +00:00
platform fix(msvc): Fix C4138 warning by adding space before commented parameter names 2025-12-12 07:04:31 +00:00
sync libipc/memory/resource.h => libipc/mem/resource.h 2025-12-12 07:04:31 +00:00
utility Refactoring the generic memory allocator 2025-12-12 07:04:31 +00:00
buffer.cpp refactor(buffer): rename 'additional' parameter to 'mem_to_free' for clarity 2025-11-30 05:09:56 +00:00
ipc.cpp Fix the issue caused by inconsistent lifecycle of the global IPC object. 2025-12-12 07:04:31 +00:00
policy.h recycle storage for large message 2021-07-11 15:56:30 +08:00
prod_cons.h try to adjust recycling strategy for large message cache 2021-07-11 13:13:30 +08:00
queue.h libipc/memory/resource.h => libipc/mem/resource.h 2025-12-12 07:04:31 +00:00
shm.cpp libipc/memory/resource.h => libipc/mem/resource.h 2025-12-12 07:04:31 +00:00
waiter.h Update platform-specific feature macros to new interfaces in imp 2025-12-12 07:04:31 +00:00