Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.cfa

    r58b6d1b r084520f  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Jun  2 08:24:56 2018
    13 // Update Count     : 471
     12// Last Modified On : Wed Sep 26 18:22:57 2018
     13// Update Count     : 474
    1414//
    1515
     
    2727
    2828forall( dtype ostype | ostream( ostype ) ) {
    29         ostype & ?|?( ostype & os, _Bool b ) {
     29        ostype & ?|?( ostype & os, bool b ) {
    3030                if ( sepPrt( os ) ) fmt( os, "%s", sepGetCur( os ) );
    3131                fmt( os, "%s", b ? "true" : "false" );
     
    275275
    276276forall( dtype istype | istream( istype ) ) {
    277         istype & ?|?( istype & is, _Bool & b ) {
     277        istype & ?|?( istype & is, bool & b ) {
    278278                char val[6];
    279279                fmt( is, "%5s", val );
     
    281281                else if ( strcmp( val, "false" ) == 0 ) b = false;
    282282                else {
    283                         fprintf( stderr, "invalid _Bool constant\n" );
     283                        fprintf( stderr, "invalid Boolean constant\n" );
    284284                        abort();
    285285                } // if
     
    410410// Local Variables: //
    411411// tab-width: 4 //
    412 // compile-command: "cfa iostream.c" //
     412// compile-command: "cfa iostream.cfa" //
    413413// End: //
Note: See TracChangeset for help on using the changeset viewer.