| 477 | } |
| 478 | |
| 479 | bool asCStringPointer::operator==(const asCStringPointer& other) const |
| 480 | { |
| 481 | return asCompareStrings(AddressOf(), GetLength(), other.AddressOf(), other.GetLength()) == 0; |
| 482 | } |
| 483 | |
| 484 | bool asCStringPointer::operator<(const asCStringPointer& other) const |
| 485 | { |
nothing calls this directly
no test coverage detected