From 0622ada76646c6e5475dce97150443a88d6c032b Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 24 Aug 2019 02:33:40 -0400 Subject: [PATCH] Types: Qualify std types with std:: Same behavior, but more proper from a type header point of view. --- include/athena/Types.hpp | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/include/athena/Types.hpp b/include/athena/Types.hpp index bf82f5e..6bd4f1d 100644 --- a/include/athena/Types.hpp +++ b/include/athena/Types.hpp @@ -1,15 +1,16 @@ #pragma once -#include -#include -using atInt8 = int8_t; -using atUint8 = uint8_t; -using atInt16 = int16_t; -using atUint16 = uint16_t; -using atInt32 = int32_t; -using atUint32 = uint32_t; -using atInt64 = int64_t; -using atUint64 = uint64_t; +#include +#include + +using atInt8 = std::int8_t; +using atUint8 = std::uint8_t; +using atInt16 = std::int16_t; +using atUint16 = std::uint16_t; +using atInt32 = std::int32_t; +using atUint32 = std::uint32_t; +using atInt64 = std::int64_t; +using atUint64 = std::uint64_t; // Vector types #include "simd/simd.hpp"