From ffcd86cc717d11d66a97ac0243432567dda634b2 Mon Sep 17 00:00:00 2001 From: cxl Date: Wed, 13 Mar 2019 19:55:02 +0000 Subject: [PATCH] .cosmetics git-svn-id: svn://ultimatepp.org/upp/trunk@12833 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/Ops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/Core/Ops.h b/uppsrc/Core/Ops.h index a41962e39..c2bf0f3d9 100644 --- a/uppsrc/Core/Ops.h +++ b/uppsrc/Core/Ops.h @@ -46,7 +46,7 @@ inline int SwapEndian32(int v) { __asm__("bswap %0" : "=r" (v) : "0" (v)) #endif #ifdef COMPILER_MSC -#pragma intrinsic (_byteswap_ushort, _byteswap_ulong, _byteswap_uint64,strlen) +#pragma intrinsic (_byteswap_ushort, _byteswap_ulong, _byteswap_uint64, strlen) inline word SwapEndian16(word v) { return _byteswap_ushort(v); } inline int16 SwapEndian16(int16 v) { return _byteswap_ushort(v); }