mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 01:07:57 -06:00
Fix compilation on clang
This commit is contained in:
parent
c762166974
commit
1c06a170c4
1 changed files with 4 additions and 1 deletions
|
@ -110,7 +110,10 @@ inline uint64_t next_highest_power_of_2(uint64_t v)
|
||||||
return ++ v;
|
return ++ v;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __clang__
|
||||||
|
// On clang, the size_t is a type of its own, so we need to overload for size_t.
|
||||||
|
// On MSC, the size_t type aliases to uint64_t / uint32_t, so the following code
|
||||||
|
// gives a duplicate symbol error.
|
||||||
inline size_t next_highest_power_of_2(size_t v)
|
inline size_t next_highest_power_of_2(size_t v)
|
||||||
{
|
{
|
||||||
#if sizeof(size_t) == sizeof(uint32_t)
|
#if sizeof(size_t) == sizeof(uint32_t)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue