Changeset e59e663
- Timestamp:
- Feb 20, 2020, 4:08:00 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 2cbfe92
- Parents:
- 46b11e2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.cfa
r46b11e2 re59e663 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: 30:58202013 // Update Count : 82 712 // Last Modified On : Thu Feb 20 15:53:23 2020 13 // Update Count : 829 14 14 // 15 15 … … 19 19 #include <stdio.h> 20 20 #include <stdbool.h> // true/false 21 #include <stdint.h> // UINT64_MAX 21 22 //#include <string.h> // strlen, strcmp 22 23 extern size_t strlen (const char *__s) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1))); … … 182 183 183 184 ostype & ?|?( ostype & os, int128 llli ) { 184 if ( sepPrt( os ) ) fmt( os, "%s",sepGetCur( os ) );185 if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) ); 185 186 base10_128( os, llli ); 186 187 return os; … … 191 192 192 193 ostype & ?|?( ostype & os, unsigned int128 ullli ) { 193 if ( sepPrt( os ) ) fmt( os, "%s",sepGetCur( os ) );194 if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) ); 194 195 base10_128( os, ullli ); 195 196 return os; … … 549 550 forall( dtype ostype | ostream( ostype ) ) { \ 550 551 ostype & ?|?( ostype & os, _Ostream_Manip(T) f ) { \ 551 if ( sepPrt( os ) ) fmt( os, "%s",sepGetCur( os ) ); \552 if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) ); \ 552 553 \ 553 554 if ( f.base == 'b' | f.base == 'o' | f.base == 'x' | f.base == 'X' ) { \
Note: See TracChangeset
for help on using the changeset viewer.