| 120 | class CachedImage { |
| 121 | public: |
| 122 | CachedImage() {} |
| 123 | CachedImage(CachedImage&& other) noexcept; |
| 124 | CachedImage& operator=(CachedImage&& other) noexcept; |
| 125 | inline size_t NumBytes() const { return num_bytes; } |
nothing calls this directly
no outgoing calls
no test coverage detected