Changes in libcfa/src/iostream.cfa [e59e663:bd5b443]
- File:
-
- 1 edited
-
libcfa/src/iostream.cfa (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.cfa
re59e663 rbd5b443 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Feb 20 15: 53:23202013 // Update Count : 82 912 // Last Modified On : Thu Feb 20 15:30:58 2020 13 // Update Count : 827 14 14 // 15 15 … … 19 19 #include <stdio.h> 20 20 #include <stdbool.h> // true/false 21 #include <stdint.h> // UINT64_MAX22 21 //#include <string.h> // strlen, strcmp 23 22 extern size_t strlen (const char *__s) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1))); … … 183 182 184 183 ostype & ?|?( ostype & os, int128 llli ) { 185 if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );184 if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) ); 186 185 base10_128( os, llli ); 187 186 return os; … … 192 191 193 192 ostype & ?|?( ostype & os, unsigned int128 ullli ) { 194 if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );193 if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) ); 195 194 base10_128( os, ullli ); 196 195 return os; … … 550 549 forall( dtype ostype | ostream( ostype ) ) { \ 551 550 ostype & ?|?( ostype & os, _Ostream_Manip(T) f ) { \ 552 if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) ); \551 if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) ); \ 553 552 \ 554 553 if ( f.base == 'b' | f.base == 'o' | f.base == 'x' | f.base == 'X' ) { \
Note:
See TracChangeset
for help on using the changeset viewer.