Moved bastl into target/_any folder.
This commit is contained in:
21
targets/_any/bastl/include/cstdint
Normal file
21
targets/_any/bastl/include/cstdint
Normal file
@@ -0,0 +1,21 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#if !defined(BAD_APPLE_OS_CSTDINT_INCLUDED)
|
||||
#define BAD_APPLE_OS_CSTDINT_INCLUDED
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
namespace std
|
||||
{
|
||||
using ::int8_t;
|
||||
using ::int16_t;
|
||||
using ::int32_t;
|
||||
using ::int64_t;
|
||||
using ::uint8_t;
|
||||
using ::uint16_t;
|
||||
using ::uint32_t;
|
||||
using ::uint64_t;
|
||||
}
|
||||
|
||||
#endif // !defined(BAD_APPLE_OS_CSTDINT_INCLUDED)
|
||||
Reference in New Issue
Block a user