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/util/hashtable.cpp

    r286 r348  
    161161        printf(" %d:",n);
    162162        for (;e;e=e->next)
    163                 printf(" (%x)%s=%p",e->hash,(const char*)e->key,e->value);
     163                printf(" (%x)%s=%p",e->hash,e->key.c_str(),e->value);
    164164        printf("\n");
    165165        }
Note: See TracChangeset for help on using the changeset viewer.