based

Opinionated utility library
git clone git://git.dimitrijedobrota.com/based.git
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING

commit 49d0990b3949208ebb3690f4826e1eaa77186f15
parent f32ec36db38b2d1fa203da7f0f850c3c9dc05e96
author Dimitrije Dobrota < mail@dimitrijedobrota.com >
date Tue, 17 Jun 2025 01:26:02 +0200

Get rid of bare types for good

Diffstat:
M include/based/types/types.hpp | + -----------

1 files changed, 1 insertions(+), 11 deletions(-)


diff --git a/ include/based/types/types.hpp b/ include/based/types/types.hpp

@@ -9,17 +9,7 @@ namespace based


// NOLINTBEGIN(google-runtime-int)

using bi8 = signed char;
using bi16 = signed short int;
using bi32 = signed int;
using bi64 = signed long long int;

using bu8 = unsigned char;
using bu16 = unsigned short int;
using bu32 = unsigned int;
using bu64 = unsigned long long int;

using size_t = bu64;
using size_t = unsigned long long int;

#define BASED_DETAIL_OP_UNARY(Prefix, Name, Index) \
auto Name(Prefix##8)->Prefix##8; \