Inserts \p program into the cache with \p key.
| 98 | |
| 99 | /// Inserts \p program into the cache with \p key. |
| 100 | void insert(const std::string &key, const program &program) |
| 101 | { |
| 102 | insert(key, std::string(), program); |
| 103 | } |
| 104 | |
| 105 | /// Inserts \p program into the cache with \p key and \p options. |
| 106 | void insert(const std::string &key, const std::string &options, const program &program) |
no test coverage detected