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/neuro/neurolibparam.cpp

    r286 r348  
    5151        t+=n;
    5252        }
    53 return t;
     53return t.c_str();
    5454}
    5555
     
    5959t=Neuro::getClass(i)->getLongName();
    6060t+=" ("; t+=Neuro::getClassName(i); t+=")";
    61 return t;
     61return t.c_str();
    6262}
    6363
     
    6666static SString t;
    6767t=Neuro::getClass(i)->getSummary();
    68 return t;
     68return t.c_str();
    6969}
    7070
Note: See TracChangeset for help on using the changeset viewer.