| 32 | } |
| 33 | |
| 34 | [[nodiscard]] void *get() const noexcept { |
| 35 | std::scoped_lock _(mMutex); |
| 36 | return mBuffer; |
| 37 | } |
| 38 | |
| 39 | [[nodiscard]] size_t size() const noexcept { |
| 40 | std::scoped_lock _(mMutex); |
nothing calls this directly
no outgoing calls
no test coverage detected