Fix compilation on mac

This commit is contained in:
baldurk
2021-09-21 18:48:43 +01:00
parent dc6bc12da7
commit b4cf86c48c
-9
View File
@@ -318,15 +318,6 @@ inline size_t Log2Ceil(size_t value)
return (size_t)Log2Ceil((uint32_t)value);
#endif
}
inline size_t Log2(size_t value)
{
#if ENABLED(RDOC_X64)
return (size_t)Log2((uint64_t)value);
#else
return (size_t)Log2((uint32_t)value);
#endif
}
#endif
/////////////////////////////////////////////////