| 236 | } |
| 237 | #else |
| 238 | static size_t curl_write_cb(char* ptr, size_t size, size_t nmemb, void* userdata) { |
| 239 | auto* out = static_cast<std::string*>(userdata); |
| 240 | out->append(ptr, size * nmemb); |
| 241 | return size * nmemb; |
| 242 | } |
| 243 | |
| 244 | // FastFlowLM/FastFlowLM (non-Windows) |
| 245 | static std::optional<std::string> http_get_latest_tag_from_github(bool& timed_out) { |
nothing calls this directly
no outgoing calls
no test coverage detected