| 291 | } |
| 292 | |
| 293 | void Baseline::setJSONValue(nlohmann::json& target, const std::string& key, |
| 294 | const std::string& value) { |
| 295 | std::lock_guard<std::mutex> autoLock(locker); |
| 296 | std::string jsonKey; |
| 297 | auto json = FindJSON(target, key, &jsonKey); |
| 298 | (*json)[jsonKey] = value; |
| 299 | } |
| 300 | } // namespace pag |
nothing calls this directly
no test coverage detected