Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.cfa

    re59e663 rbd5b443  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Feb 20 15:53:23 2020
    13 // Update Count     : 829
     12// Last Modified On : Thu Feb 20 15:30:58 2020
     13// Update Count     : 827
    1414//
    1515
     
    1919#include <stdio.h>
    2020#include <stdbool.h>                                                                    // true/false
    21 #include <stdint.h>                                                                             // UINT64_MAX
    2221//#include <string.h>                                                                   // strlen, strcmp
    2322extern size_t strlen (const char *__s) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
     
    183182
    184183        ostype & ?|?( ostype & os, int128 llli ) {
    185                 if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
     184                if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
    186185                base10_128( os, llli );
    187186                return os;
     
    192191
    193192        ostype & ?|?( ostype & os, unsigned int128 ullli ) {
    194                 if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
     193                if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
    195194                base10_128( os, ullli );
    196195                return os;
     
    550549forall( dtype ostype | ostream( ostype ) ) { \
    551550        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 ) ); \
    553552\
    554553                if ( f.base == 'b' | f.base == 'o' | f.base == 'x' | f.base == 'X' ) { \
Note: See TracChangeset for help on using the changeset viewer.