Refureku v2.2.0
C++17 runtime reflection library.
FundamentalTypes.h
1
8#pragma once
9
10#include <cstdint>
11
12namespace rfk
13{
14 using uint8 = uint8_t;
15 using uint16 = uint16_t;
16 using uint32 = uint32_t;
17 using uint64 = uint64_t;
18
19 using int8 = int8_t;
20 using int16 = int16_t;
21 using int32 = int32_t;
22 using int64 = int64_t;
23}
Definition: Allocator.h:16