| 475 | } |
| 476 | |
| 477 | bool MockNamedValue::compatibleForCopying(const MockNamedValue& p) const |
| 478 | { |
| 479 | if (type_ == p.type_) return true; |
| 480 | |
| 481 | if ((type_ == "const void*") && (p.type_ == "void*")) |
| 482 | return true; |
| 483 | |
| 484 | return false; |
| 485 | } |
| 486 | |
| 487 | SimpleString MockNamedValue::toString() const |
| 488 | { |