Skip to content

Commit

Permalink
Merge pull request #74 from julelang/revert-73-use_fixed_with_int_types
Browse files Browse the repository at this point in the history
Revert "fix: use fixed width integer types to define jule types"
  • Loading branch information
mertcandav authored Feb 1, 2024
2 parents e5aa529 + 5064082 commit 1474009
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions api/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#define __JULE_TYPES_HPP

#include <cstddef>
#include <cstdint>
#include <ostream>

#include "platform.hpp"
Expand All @@ -24,14 +23,14 @@ namespace jule
typedef unsigned long long int Uintptr;
#endif

using I8 = std::int8_t;
using I16 = std::int16_t;
using I32 = std::int32_t;
using I64 = std::int64_t;
using U8 = std::uint8_t;
using U16 = std::uint16_t;
using U32 = std::uint32_t;
using U64 = std::uint64_t;
typedef signed char I8;
typedef signed short int I16;
typedef signed long int I32;
typedef signed long long int I64;
typedef unsigned char U8;
typedef unsigned short int U16;
typedef unsigned long int U32;
typedef unsigned long long int U64;
typedef float F32;
typedef double F64;
typedef bool Bool;
Expand Down

0 comments on commit 1474009

Please sign in to comment.