mirror of https://github.com/libAthena/athena.git
Types: Qualify std types with std::
Same behavior, but more proper from a type header point of view.
This commit is contained in:
parent
f669191fcb
commit
0622ada766
|
@ -1,15 +1,16 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <cstdint>
|
|
||||||
#include <cinttypes>
|
|
||||||
|
|
||||||
using atInt8 = int8_t;
|
#include <cinttypes>
|
||||||
using atUint8 = uint8_t;
|
#include <cstdint>
|
||||||
using atInt16 = int16_t;
|
|
||||||
using atUint16 = uint16_t;
|
using atInt8 = std::int8_t;
|
||||||
using atInt32 = int32_t;
|
using atUint8 = std::uint8_t;
|
||||||
using atUint32 = uint32_t;
|
using atInt16 = std::int16_t;
|
||||||
using atInt64 = int64_t;
|
using atUint16 = std::uint16_t;
|
||||||
using atUint64 = uint64_t;
|
using atInt32 = std::int32_t;
|
||||||
|
using atUint32 = std::uint32_t;
|
||||||
|
using atInt64 = std::int64_t;
|
||||||
|
using atUint64 = std::uint64_t;
|
||||||
|
|
||||||
// Vector types
|
// Vector types
|
||||||
#include "simd/simd.hpp"
|
#include "simd/simd.hpp"
|
||||||
|
|
Loading…
Reference in New Issue