Moved bastl into target/_any folder.
This commit is contained in:
16
targets/_any/bastl/include/bit
Normal file
16
targets/_any/bastl/include/bit
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#if !defined(BAD_APPLE_OS_BIT_INCLUDED)
|
||||
#define BAD_APPLE_OS_BIT_INCLUDED
|
||||
|
||||
namespace std
|
||||
{
|
||||
template<typename TTo, typename TFrom>
|
||||
const TTo bit_cast(const TFrom& from) noexcept
|
||||
{
|
||||
return __builtin_bit_cast(TTo, from);
|
||||
}
|
||||
}
|
||||
|
||||
#endif // !defined(BAD_APPLE_OS_BIT_INCLUDED)
|
||||
Reference in New Issue
Block a user