| 534 | } |
| 535 | |
| 536 | void Identifier::setIdentifier(QStringView identifier) |
| 537 | { |
| 538 | IndexedString id(identifier); |
| 539 | if (id != this->identifier()) { |
| 540 | prepareWrite(); |
| 541 | dd->m_identifier = std::move(id); |
| 542 | } |
| 543 | } |
| 544 | |
| 545 | void Identifier::setIdentifier(const IndexedString& identifier) |
| 546 | { |
no test coverage detected