Remove debug thing to deprecate old integer format, it was just there for rewriting purposes
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Deukhoofd 2022-03-23 13:59:29 +01:00
parent 3cc19de61f
commit 46bf10c719
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 0 additions and 10 deletions

View File

@ -15,14 +15,4 @@ using level_int_t = uint64_t;
using level_int_t = uint8_t;
#endif
[[deprecated]] typedef uint8_t uint8_t;
[[deprecated]] typedef uint16_t uint16_t;
[[deprecated]] typedef uint32_t uint32_t;
[[deprecated]] typedef uint64_t uint64_t;
[[deprecated]] typedef int8_t int8_t;
[[deprecated]] typedef int16_t int16_t;
[[deprecated]] typedef int32_t int32_t;
[[deprecated]] typedef int64_t int64_t;
#endif // CREATURELIB_DEFINES_HPP