Ignore:
Timestamp:
Aug 14, 2018, 1:20:59 PM (6 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
Children:
7b3a6e6
Parents:
0c827019 (diff), 26f4dbe (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/fstream.hfa

    r0c827019 r0e0f128c  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Tue Jun  5 10:20:25 2018
    13 // Update Count     : 131
     12// Last Modified On : Sat Aug 11 13:54:27 2018
     13// Update Count     : 132
    1414//
    1515
     
    2121struct ofstream {
    2222        void * file;
    23         _Bool sepDefault;
    24         _Bool sepOnOff;
    25         _Bool sawNL;
     23        bool sepDefault;
     24        bool sepOnOff;
     25        bool sawNL;
    2626        const char * sepCur;
    2727        char separator[sepSize];
     
    3030
    3131// private
    32 _Bool sepPrt( ofstream & );
     32bool sepPrt( ofstream & );
    3333void sepReset( ofstream & );
    34 void sepReset( ofstream &, _Bool );
     34void sepReset( ofstream &, bool );
    3535const char * sepGetCur( ofstream & );
    3636void sepSetCur( ofstream &, const char * );
    37 _Bool getNL( ofstream & );
    38 void setNL( ofstream &, _Bool );
     37bool getNL( ofstream & );
     38void setNL( ofstream &, bool );
    3939
    4040// public
    4141void sepOn( ofstream & );
    4242void sepOff( ofstream & );
    43 _Bool sepDisable( ofstream & );
    44 _Bool sepEnable( ofstream & );
     43bool sepDisable( ofstream & );
     44bool sepEnable( ofstream & );
    4545
    4646const char * sepGet( ofstream & );
Note: See TracChangeset for help on using the changeset viewer.