Ignore:
Timestamp:
Jul 8, 2024, 8:37:18 PM (11 days ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
d287f3e
Parents:
a4e1b09
Message:

update reading boolean and match text

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.hfa

    ra4e1b09 rc015e2d  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Apr 21 07:32:19 2024
    13 // Update Count     : 744
     12// Last Modified On : Sat Jul  6 11:33:31 2024
     13// Update Count     : 758
    1414//
    1515
     
    359359        istype & ?|?( istype &, long double _Complex & );
    360360
    361         istype & ?|?( istype &, const char [] );
     361        // This is too restrictive as it prevents building a format in a string and using that format.
     362        // inline istype & ?|?( istype &, char [] ) {                   // possible error, too restrictive to change
     363        //      _Static_assert( false, "reading a character array without a maximum length is unsafe. Use input manipulator \"wdi( N, s )\", where \"char s[N]\" or fmt( s )." );
     364        // }
     365        istype & ?|?( istype &, const char [] );                        // match text
    362366
    363367        // manipulators
Note: See TracChangeset for help on using the changeset viewer.