| 263 | // propagation to a caller of any non-inline function in this library. |
| 264 | |
| 265 | IndexedString::~IndexedString() |
| 266 | { |
| 267 | if (shouldDoDUChainReferenceCounting(this)) { |
| 268 | deref(m_index); |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | IndexedString::IndexedString(const IndexedString& rhs) noexcept |
| 273 | : m_index(rhs.m_index) |