| 39 | return m_size == other.m_size && (m_data == other.m_data || (m_size > 0 && std::memcmp(m_data, other.m_data, m_size) == 0)); |
| 40 | } |
| 41 | bool operator!=(const QByteArrayView& other) const { return !(*this == other); } |
| 42 | |
| 43 | private: |
| 44 | const char* m_data; |
nothing calls this directly
no outgoing calls
no test coverage detected