| 31 | } |
| 32 | |
| 33 | static size_t write_callback(void* contents, size_t size, size_t nmemb, std::string* userp) |
| 34 | { |
| 35 | userp->append(static_cast<char*>(contents), size * nmemb); |
| 36 | return size * nmemb; |
| 37 | } |
| 38 | |
| 39 | bool utils::is_updated() |
| 40 | { |
nothing calls this directly
no outgoing calls
no test coverage detected