Default constructor, no max frames
| 17 | |
| 18 | // Default constructor, no max frames |
| 19 | CacheBase::CacheBase() : CacheBase::CacheBase(0) { } |
| 20 | |
| 21 | // Constructor that sets the max frames to cache |
| 22 | CacheBase::CacheBase(int64_t max_bytes) : max_bytes(max_bytes) { |
nothing calls this directly
no outgoing calls
no test coverage detected