Fix verilatedimp compile error on RHEL, bug117

This commit is contained in:
Wilson Snyder 2009-12-11 06:59:50 -05:00
parent eb4a686b14
commit df69439b9c

View File

@ -41,7 +41,7 @@ class VerilatedScope;
struct VerilatedCStrCmp {
// For ordering maps keyed by const char*'s
bool operator() (const char *a, const char *b) {
bool operator() (const char *a, const char *b) const {
return std::strcmp(a, b) < 0;
}
};