Changeset c4e3c28b
- Timestamp:
- Apr 24, 2020, 4:21:43 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 37e5640
- Parents:
- 13099a8b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.cfa
r13099a8b rc4e3c28b 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Fri Apr 24 1 1:48:53202013 // Update Count : 95 412 // Last Modified On : Fri Apr 24 13:51:36 2020 13 // Update Count : 956 14 14 // 15 15 … … 593 593 (ostype &)(os | fmt | "" | fmt2); \ 594 594 } else if ( f.base == 'o' ) { \ 595 if ( fmt.flags.pc && fmt.pc > 22 ) fmt.pc -= 22; \595 if ( fmt.flags.pc && fmt.pc > 22 ) fmt.pc -= 22; else fmt.flags.pc = false; \ 596 596 if ( fmt.flags.left ) { \ 597 597 fmt.flags.left = false; \ … … 617 617 if ( ! fmt.flags.nobsdp ) { if ( fmt.pc < fmt.wd ) fmt.wd -= 1; else fmt.pc -= 1; } \ 618 618 fmt2.wd = 1; \ 619 fmt2.val = ((msig & 0x3) << 1) + ( lsig & 0x8000000000000000U!= 0); \619 fmt2.val = ((msig & 0x3) << 1) + ((lsig & 0x8000000000000000U) != 0); \ 620 620 (ostype &)(os | fmt | "" | fmt2); \ 621 621 sepOff( os ); \
Note: See TracChangeset
for help on using the changeset viewer.