Deprecate the internal int/uint types in favor of the cstdint types they were based on

This commit is contained in:
Tim Wojtulewicz 2019-07-30 11:38:42 -07:00
parent 18e4976c6c
commit 54752ef9a1
218 changed files with 1331 additions and 1323 deletions

View file

@ -111,7 +111,7 @@ void ODesc::Add(int i)
}
}
void ODesc::Add(uint32 u)
void ODesc::Add(uint32_t u)
{
if ( IsBinary() )
AddBytes(&u, sizeof(u));
@ -123,7 +123,7 @@ void ODesc::Add(uint32 u)
}
}
void ODesc::Add(int64 i)
void ODesc::Add(int64_t i)
{
if ( IsBinary() )
AddBytes(&i, sizeof(i));
@ -135,7 +135,7 @@ void ODesc::Add(int64 i)
}
}
void ODesc::Add(uint64 u)
void ODesc::Add(uint64_t u)
{
if ( IsBinary() )
AddBytes(&u, sizeof(u));