Ignore:
Timestamp:
04/09/15 23:51:28 (9 years ago)
Author:
Maciej Komosinski
Message:
  • explicit c_str() in SString instead of (const char*) cast
  • genetic converters and GenMan? are now thread-local which enables multi-threaded simulator separation
File:
1 edited

Legend:

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

    r335 r348  
    115115int len=src.len();
    116116SString ret((len*11)/10+10);
    117 const char*t=(const char*)src;
     117const char*t=src.c_str();
    118118while(len>0)
    119119        {
Note: See TracChangeset for help on using the changeset viewer.