fix include order

This commit is contained in:
Aaron Po
2026-04-13 10:03:23 -04:00
parent c7abc808ea
commit 3c70c46957
6 changed files with 16 additions and 14 deletions

View File

@@ -3,14 +3,14 @@
* @brief CURLWebClient::Get() implementation.
*/
#include <curl/curl.h>
#include "web_client/curl_web_client.h"
#include <cstdint>
#include <memory>
#include <stdexcept>
#include <string>
#include "web_client/curl_web_client.h"
#include <curl/curl.h>
using CurlHandle = std::unique_ptr<CURL, decltype(&curl_easy_cleanup)>;