| 152 | } |
| 153 | |
| 154 | void CameraMetaData::disableCamera(const string &make, const string &model) { |
| 155 | for (const auto& cam : cameras) { |
| 156 | if (cam.second->make == make && cam.second->model == model) |
| 157 | cam.second->supported = false; |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | } // namespace rawspeed |
nothing calls this directly
no outgoing calls
no test coverage detected