Changeset 955 for cpp/frams/genetics/f4


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/genetics/f4/f4_general.cpp

    r896 r955  
    13041304        unsigned int len;
    13051305        // build in a SString, with initial size
    1306         SString out(strlen(buf) + 2000);
    1307         out = "";
     1306        SString out;
     1307        out.reserve(int(strlen(buf)) + 2000);
    13081308
    13091309        sprint(out);
Note: See TracChangeset for help on using the changeset viewer.