Ignore:
Timestamp:
06/25/20 00:34:29 (4 years ago)
Author:
Maciej Komosinski
Message:

Genetic format ID becomes a string (no longer limited to a single character)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/util/sstring.cpp

    r897 r955  
    127127}
    128128
    129 SString::SString(int x)
    130 {
    131         buf = new SBuf(x);
    132 }
    133 
    134129SString::SString(const char *t, int t_len)
    135130{
     
    157152                REF_UNLOCK;
    158153        }
     154}
     155
     156SString::SString(char in)
     157{
     158        initEmpty();
     159        copyFrom(&in, 1);
    159160}
    160161
Note: See TracChangeset for help on using the changeset viewer.