Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/collections/string.cfa

    r211def2 rf2898df  
    1010// Created On       : Fri Sep 03 11:00:00 2021
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Feb  7 21:17:06 2024
    13 // Update Count     : 259
     12// Last Modified On : Sun Jan 14 12:03:47 2024
     13// Update Count     : 240
    1414//
    1515
     
    210210}
    211211
    212 ifstream & ?|?( ifstream & is, _Istream_Squoted f ) {
    213         _Istream_Rquoted f2 = { { f.sstr.s.inner, (_Istream_str_base)f.sstr } };
    214     return is | f2;
    215 } // ?|?
     212void ?|?( ifstream & in, string & s ) {
     213    in | (*s.inner);
     214}
    216215
    217216ifstream & ?|?( ifstream & is, _Istream_Sstr f ) {
    218 //      _Istream_Rstr f2 = {f.sstr.s.inner, (_Istream_str_base)f.sstr};
    219217        _Istream_Rstr f2 = {f.s.inner, (_Istream_str_base)f};
    220218    return is | f2;
    221219} // ?|?
     220
     221void ?|?( ifstream & in, _Istream_Sstr f ) {
     222    (ifstream &)(in | f);
     223}
    222224
    223225////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.