Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.hfa

    r2c60c644 r8d321f9  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Jul  4 18:31:48 2020
    13 // Update Count     : 343
     12// Last Modified On : Fri Jun 19 16:15:56 2020
     13// Update Count     : 338
    1414//
    1515
     
    166166                unsigned char all;
    167167                struct {
    168                         unsigned char neg:1;                                            // val is negative
    169168                        unsigned char pc:1;                                                     // precision specified
    170169                        unsigned char left:1;                                           // left justify
     
    371370
    372371static inline {
    373         _Istream_Char ignore( const char ) { return (_Istream_Char)@{ true }; }
     372        _Istream_Char ignore( const char c ) { return (_Istream_Char)@{ true }; }
    374373        _Istream_Char & ignore( _Istream_Char & fmt ) { fmt.ignore = true; return fmt; }
    375374} // distribution
    376375forall( dtype istype | istream( istype ) ) istype & ?|?( istype & is, _Istream_Char f );
    377376
    378 forall( dtype T | sized( T ) )
     377forall( otype T )
    379378struct _Istream_Manip {
    380379        T & val;                                                                                        // polymorphic base-type
Note: See TracChangeset for help on using the changeset viewer.