Ignore:
Timestamp:
07/03/20 00:37:13 (4 years ago)
Author:
Maciej Komosinski
Message:

Increased SString and std::string compatibility: introduced length(), size(), and capacity(), and removed legacy methods that have std::string equivalents

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/vm/framscript.l

    r955 r973  
    116116static SString quoteMultiline(const SString &src)
    117117{
    118 int len=src.len();
     118int len=src.length();
    119119SString ret;
    120120ret.reserve((len*11)/10+10);
Note: See TracChangeset for help on using the changeset viewer.