-
Notifications
You must be signed in to change notification settings - Fork 53
Open
Description
File:
detail/functions.hpp line 47
Code:
#ifdef APPLE
inline size_t byteswap(size_t val)
{
switch(sizeof(size_t))
{
case sizeof(uint16_t):
return (size_t)byteswap((uint16_t)val);
case sizeof(uint32_t):
return (size_t)byteswap((uint32_t)val);
case sizeof(uint64_t):
return (size_t)byteswap((uint64_t)val);
} // <-- check default path
}
#endif
Metadata
Metadata
Assignees
Labels
No labels