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

@ -1066,8 +1066,8 @@ int main(int argc, char** argv)
double time_net_start = current_time(true);;
uint64 mem_net_start_total;
uint64 mem_net_start_malloced;
uint64_t mem_net_start_total;
uint64_t mem_net_start_malloced;
if ( time_bro )
{
@ -1084,8 +1084,8 @@ int main(int argc, char** argv)
double time_net_done = current_time(true);;
uint64 mem_net_done_total;
uint64 mem_net_done_malloced;
uint64_t mem_net_done_total;
uint64_t mem_net_done_malloced;
if ( time_bro )
{