Rename UInt to JsonUInt

This commit is contained in:
Benoit Blanchon
2022-12-19 12:14:16 +01:00
parent 652d70fe2c
commit d0b619ea93
11 changed files with 23 additions and 21 deletions

View File

@@ -13,10 +13,10 @@ namespace ARDUINOJSON_NAMESPACE {
#if ARDUINOJSON_USE_LONG_LONG
typedef int64_t JsonInteger;
typedef uint64_t UInt;
typedef uint64_t JsonUInt;
#else
typedef long JsonInteger;
typedef unsigned long UInt;
typedef unsigned long JsonUInt;
#endif
} // namespace ARDUINOJSON_NAMESPACE