Changeset e59e663


Ignore:
Timestamp:
Feb 20, 2020, 4:08:00 PM (4 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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
Message:

fix build error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.cfa

    r46b11e2 re59e663  
    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:30:58 2020
    13 // Update Count     : 827
     12// Last Modified On : Thu Feb 20 15:53:23 2020
     13// Update Count     : 829
    1414//
    1515
     
    1919#include <stdio.h>
    2020#include <stdbool.h>                                                                    // true/false
     21#include <stdint.h>                                                                             // UINT64_MAX
    2122//#include <string.h>                                                                   // strlen, strcmp
    2223extern size_t strlen (const char *__s) __attribute__ ((__nothrow__ , __leaf__)) __attribute__ ((__pure__)) __attribute__ ((__nonnull__ (1)));
     
    182183
    183184        ostype & ?|?( ostype & os, int128 llli ) {
    184                 if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
     185                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
    185186                base10_128( os, llli );
    186187                return os;
     
    191192
    192193        ostype & ?|?( ostype & os, unsigned int128 ullli ) {
    193                 if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
     194                if ( $sepPrt( os ) ) fmt( os, "%s", $sepGetCur( os ) );
    194195                base10_128( os, ullli );
    195196                return os;
     
    549550forall( dtype ostype | ostream( ostype ) ) { \
    550551        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 ) ); \
    552553\
    553554                if ( f.base == 'b' | f.base == 'o' | f.base == 'x' | f.base == 'X' ) { \
Note: See TracChangeset for help on using the changeset viewer.