* @brief Construct a new cache object. * * @note Caches must contain classes derived from dpp::managed. */
| 68 | * @note Caches must contain classes derived from dpp::managed. |
| 69 | */ |
| 70 | cache() { |
| 71 | cache_map = new std::unordered_map<snowflake, T*>; |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * @brief Destroy the cache object |
nothing calls this directly
no outgoing calls
no test coverage detected