| 86 | } |
| 87 | |
| 88 | void WriteCommonFields( |
| 89 | rapidjson::Document& document, std::string_view grantType, std::string_view scope) |
| 90 | { |
| 91 | WriteClientFields(document); |
| 92 | WriteAccessFields(document, grantType, scope); |
| 93 | } |
| 94 | |
| 95 | template<typename Elem, typename First, typename ...Others> |
| 96 | void append(std::basic_string<Elem>& dest, First&& first, Others&& ...others) |
no test coverage detected