Forbid copy & move semantics.
| 31 | |
| 32 | // Forbid copy & move semantics. |
| 33 | GenericCache(const GenericCache &) = delete; |
| 34 | GenericCache(GenericCache && other) = delete; |
| 35 | GenericCache & operator=(const GenericCache &) = delete; |
| 36 | GenericCache & operator=(GenericCache && other) = delete; |
nothing calls this directly
no test coverage detected