| 8653 | } |
| 8654 | |
| 8655 | bool ValueType::isTypeEqual(const ValueType* that) const |
| 8656 | { |
| 8657 | if (!that) |
| 8658 | return false; |
| 8659 | auto tie = [](const ValueType* vt) { |
| 8660 | return std::tie(vt->type, vt->container, vt->pointer, vt->typeScope, vt->smartPointer); |
| 8661 | }; |
| 8662 | return tie(this) == tie(that); |
| 8663 | } |
| 8664 | |
| 8665 | std::string ValueType::str() const |
| 8666 | { |
no outgoing calls