Skip to content

Commit

Permalink
Update types.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCompez committed Apr 16, 2023
1 parent 8e047ec commit 0fcd5ed
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions utilities/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ using su16 = std::uint_least16_t;
using su32 = std::uint_least32_t;
using su64 = std::uint_least64_t;

using f32 = float;
using f64 = double;

using b8 = bool;

using umax = std::uintmax_t; //! Maximum-width unsigned integer type
using uptr = std::uintptr_t; //! Unsigned integer type capable of holding a pointer to void.

Expand Down

0 comments on commit 0fcd5ed

Please sign in to comment.