Ignore:
Timestamp:
Jun 13, 2019, 8:39:28 PM (5 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:
6a1dfda
Parents:
d60780c
Message:

remove const char * input because of error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.cfa

    rd60780c rdc5072f  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Jun 12 15:00:31 2019
    13 // Update Count     : 819
     12// Last Modified On : Thu Jun 13 17:21:10 2019
     13// Update Count     : 812
    1414//
    1515
     
    740740        } // ?|?
    741741
    742         istype & ?|?( istype & is, const char * fmt ) {
    743                 fmt( is, fmt, "" );
    744                 return is;
    745         } // ?|?
     742        // istype & ?|?( istype & is, const char * fmt ) {
     743        //      fmt( is, fmt, "" );
     744        //      return is;
     745        // } // ?|?
    746746
    747747        istype & ?|?( istype & is, char * s ) {
     
    777777        // skip xxx
    778778        if ( ! f.s ) {
    779                 //printf( "skip %s %d\n", f.scanset, f.wd );
    780                 if ( f.wd != -1 ) for ( f.wd ) fmt( is, "%*c" ); // no input arguments
    781                 else fmt( is, f.scanset, "" );
     779                // printf( "skip %s %d\n", f.scanset, f.wd );
     780                if ( f.wd == -1 ) fmt( is, f.scanset, "" ); // no input arguments
     781                else for ( f.wd ) fmt( is, "%*c" );
    782782                return is;
    783783        } // if
Note: See TracChangeset for help on using the changeset viewer.