diff options
Diffstat (limited to 'src/stable/formatter.h')
| -rw-r--r-- | src/stable/formatter.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/stable/formatter.h b/src/stable/formatter.h index fc430f3..ea7fac4 100644 --- a/src/stable/formatter.h +++ b/src/stable/formatter.h | |||
| @@ -273,14 +273,14 @@ namespace Bu | |||
| 273 | Formatter &operator<<( Formatter &f, signed char c ); | 273 | Formatter &operator<<( Formatter &f, signed char c ); |
| 274 | Formatter &operator<<( Formatter &f, char c ); | 274 | Formatter &operator<<( Formatter &f, char c ); |
| 275 | Formatter &operator<<( Formatter &f, unsigned char c ); | 275 | Formatter &operator<<( Formatter &f, unsigned char c ); |
| 276 | Formatter &operator<<( Formatter &f, signed short i ); | 276 | Formatter &operator<<( Formatter &f, signed short int i ); |
| 277 | Formatter &operator<<( Formatter &f, unsigned short i ); | 277 | Formatter &operator<<( Formatter &f, unsigned short int i ); |
| 278 | Formatter &operator<<( Formatter &f, signed int i ); | 278 | Formatter &operator<<( Formatter &f, signed int i ); |
| 279 | Formatter &operator<<( Formatter &f, unsigned int i ); | 279 | Formatter &operator<<( Formatter &f, unsigned int i ); |
| 280 | Formatter &operator<<( Formatter &f, signed long i ); | 280 | Formatter &operator<<( Formatter &f, signed long int i ); |
| 281 | Formatter &operator<<( Formatter &f, unsigned long i ); | 281 | Formatter &operator<<( Formatter &f, unsigned long int i ); |
| 282 | Formatter &operator<<( Formatter &f, signed long long i ); | 282 | Formatter &operator<<( Formatter &f, signed long long int i ); |
| 283 | Formatter &operator<<( Formatter &f, unsigned long long i ); | 283 | Formatter &operator<<( Formatter &f, unsigned long long int i ); |
| 284 | Formatter &operator<<( Formatter &f, float flt ); | 284 | Formatter &operator<<( Formatter &f, float flt ); |
| 285 | Formatter &operator<<( Formatter &f, double flt ); | 285 | Formatter &operator<<( Formatter &f, double flt ); |
| 286 | Formatter &operator<<( Formatter &f, long double flt ); | 286 | Formatter &operator<<( Formatter &f, long double flt ); |
| @@ -290,14 +290,14 @@ namespace Bu | |||
| 290 | Formatter &operator>>( Formatter &f, signed char &c ); | 290 | Formatter &operator>>( Formatter &f, signed char &c ); |
| 291 | Formatter &operator>>( Formatter &f, char &c ); | 291 | Formatter &operator>>( Formatter &f, char &c ); |
| 292 | Formatter &operator>>( Formatter &f, unsigned char &c ); | 292 | Formatter &operator>>( Formatter &f, unsigned char &c ); |
| 293 | Formatter &operator>>( Formatter &f, signed short &i ); | 293 | Formatter &operator>>( Formatter &f, signed short int &i ); |
| 294 | Formatter &operator>>( Formatter &f, unsigned short &i ); | 294 | Formatter &operator>>( Formatter &f, unsigned short int &i ); |
| 295 | Formatter &operator>>( Formatter &f, signed int &i ); | 295 | Formatter &operator>>( Formatter &f, signed int &i ); |
| 296 | Formatter &operator>>( Formatter &f, unsigned int &i ); | 296 | Formatter &operator>>( Formatter &f, unsigned int &i ); |
| 297 | Formatter &operator>>( Formatter &f, signed long &i ); | 297 | Formatter &operator>>( Formatter &f, signed long int &i ); |
| 298 | Formatter &operator>>( Formatter &f, unsigned long &i ); | 298 | Formatter &operator>>( Formatter &f, unsigned long int &i ); |
| 299 | Formatter &operator>>( Formatter &f, signed long long &i ); | 299 | Formatter &operator>>( Formatter &f, signed long long int &i ); |
| 300 | Formatter &operator>>( Formatter &f, unsigned long long &i ); | 300 | Formatter &operator>>( Formatter &f, unsigned long long int &i ); |
| 301 | Formatter &operator>>( Formatter &f, float &flt ); | 301 | Formatter &operator>>( Formatter &f, float &flt ); |
| 302 | Formatter &operator>>( Formatter &f, double &flt ); | 302 | Formatter &operator>>( Formatter &f, double &flt ); |
| 303 | Formatter &operator>>( Formatter &f, long double &flt ); | 303 | Formatter &operator>>( Formatter &f, long double &flt ); |
