Ignore:
File:
1 edited

Legend:

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

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