#pragma once #include "../../stdint.hpp" namespace JabyEngine { static constexpr int8_t operator""_i8(unsigned long long int value) { return static_cast(value); } static constexpr uint8_t operator""_u8(unsigned long long int value) { return static_cast(value); } // ################################################################### static constexpr int16_t operator""_i16(unsigned long long int value) { return static_cast(value); } static constexpr uint16_t operator""_u16(unsigned long long int value) { return static_cast(value); } // ################################################################### static constexpr int32_t operator""_i32(unsigned long long int value) { return static_cast(value); } static constexpr uint32_t operator""_u32(unsigned long long int value) { return static_cast(value); } }