| 1693 | } |
| 1694 | |
| 1695 | bool Value::CZString::operator<(const CZString &other) const { |
| 1696 | if (cstr_) |
| 1697 | return strcmp(cstr_, other.cstr_) < 0; |
| 1698 | return index_ < other.index_; |
| 1699 | } |
| 1700 | |
| 1701 | bool Value::CZString::operator==(const CZString &other) const { |
| 1702 | if (cstr_) |