| 109 | void copyBufFrom(const FileData& src); |
| 110 | |
| 111 | [[nodiscard]] bool isEmpty() const { return mDataSize == 0; } |
| 112 | |
| 113 | [[nodiscard]] bool isText() const { return m_bIsText || isEmpty(); } |
| 114 | [[nodiscard]] inline bool hasEOLTermiantion() const { return m_bIsText && mHasEOLTermination; } |
nothing calls this directly
no outgoing calls
no test coverage detected