From 252225fa9b2dd3dbc0a3c87bc65ce1f821706e7e Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 29 Jan 2019 13:58:51 -0800 Subject: Clerified some ints. --- src/stable/formatter.cpp | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'src/stable/formatter.cpp') diff --git a/src/stable/formatter.cpp b/src/stable/formatter.cpp index f8da5a1..dc83b2e 100644 --- a/src/stable/formatter.cpp +++ b/src/stable/formatter.cpp @@ -377,15 +377,15 @@ Bu::Formatter &Bu::operator<<( Bu::Formatter &f, unsigned char c ) return f; } -Bu::Formatter &Bu::operator<<( Bu::Formatter &f, signed short i ) +Bu::Formatter &Bu::operator<<( Bu::Formatter &f, signed short int i ) { - f.ifmt( i ); + f.ifmt( i ); return f; } -Bu::Formatter &Bu::operator<<( Bu::Formatter &f, unsigned short i ) +Bu::Formatter &Bu::operator<<( Bu::Formatter &f, unsigned short int i ) { - f.ufmt( i ); + f.ufmt( i ); return f; } @@ -401,27 +401,27 @@ Bu::Formatter &Bu::operator<<( Bu::Formatter &f, unsigned int i ) return f; } -Bu::Formatter &Bu::operator<<( Bu::Formatter &f, signed long i ) +Bu::Formatter &Bu::operator<<( Bu::Formatter &f, signed long int i ) { - f.ifmt( i ); + f.ifmt( i ); return f; } -Bu::Formatter &Bu::operator<<( Bu::Formatter &f, unsigned long i ) +Bu::Formatter &Bu::operator<<( Bu::Formatter &f, unsigned long int i ) { - f.ufmt( i ); + f.ufmt( i ); return f; } -Bu::Formatter &Bu::operator<<( Bu::Formatter &f, signed long long i ) +Bu::Formatter &Bu::operator<<( Bu::Formatter &f, signed long long int i ) { - f.ifmt( i ); + f.ifmt( i ); return f; } -Bu::Formatter &Bu::operator<<( Bu::Formatter &f, unsigned long long i ) +Bu::Formatter &Bu::operator<<( Bu::Formatter &f, unsigned long long int i ) { - f.ufmt( i ); + f.ufmt( i ); return f; } @@ -473,13 +473,13 @@ Bu::Formatter &Bu::operator>>( Bu::Formatter &f, unsigned char &c ) return f; } -Bu::Formatter &Bu::operator>>( Bu::Formatter &f, signed short &i ) +Bu::Formatter &Bu::operator>>( Bu::Formatter &f, signed short int &i ) { f.iparse( i, f.readToken() ); return f; } -Bu::Formatter &Bu::operator>>( Bu::Formatter &f, unsigned short &i ) +Bu::Formatter &Bu::operator>>( Bu::Formatter &f, unsigned short int &i ) { f.uparse( i, f.readToken() ); return f; @@ -497,25 +497,25 @@ Bu::Formatter &Bu::operator>>( Bu::Formatter &f, unsigned int &i ) return f; } -Bu::Formatter &Bu::operator>>( Bu::Formatter &f, signed long &i ) +Bu::Formatter &Bu::operator>>( Bu::Formatter &f, signed long int &i ) { f.iparse( i, f.readToken() ); return f; } -Bu::Formatter &Bu::operator>>( Bu::Formatter &f, unsigned long &i ) +Bu::Formatter &Bu::operator>>( Bu::Formatter &f, unsigned long int &i ) { f.uparse( i, f.readToken() ); return f; } -Bu::Formatter &Bu::operator>>( Bu::Formatter &f, signed long long &i ) +Bu::Formatter &Bu::operator>>( Bu::Formatter &f, signed long long int &i ) { f.iparse( i, f.readToken() ); return f; } -Bu::Formatter &Bu::operator>>( Bu::Formatter &f, unsigned long long &i ) +Bu::Formatter &Bu::operator>>( Bu::Formatter &f, unsigned long long int &i ) { f.uparse( i, f.readToken() ); return f; -- cgit v1.2.3