Skip to content

check default path #18

@maddin200

Description

@maddin200

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions