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/param/mutableparam.h

    r286 r348  
    3636int getGroupCount() {return groups.size();}
    3737int getPropCount() {return entries.size()+staticprops;}
    38 const char *grname(int i) {return (i>=groups.size()) ? 0 : (const char*)groupname(i);}
     38const char *grname(int i) {return (i>=groups.size()) ? 0 : groupname(i).c_str();}
    3939int grmember(int g,int a);
    4040
Note: See TracChangeset for help on using the changeset viewer.