Update all .cpp files to use .cc extension (google style)

This commit is contained in:
Aaron Po
2026-04-13 00:11:24 -04:00
parent 035b30abba
commit ef4f47d415
25 changed files with 50 additions and 50 deletions

View File

@@ -1,5 +1,5 @@
/**
* @file web_client/curl_global_state.cpp
* @file web_client/curl_global_state.cc
* @brief CurlGlobalState constructor and destructor implementation.
*/

View File

@@ -1,5 +1,5 @@
/**
* @file web_client/curl_web_client_get.cpp
* @file web_client/curl_web_client_get.cc
* @brief CURLWebClient::Get() implementation.
*/
@@ -72,4 +72,4 @@ std::string CURLWebClient::Get(const std::string& url) {
}
return response_string;
}
}

View File

@@ -1,5 +1,5 @@
/**
* @file web_client/curl_web_client_url_encode.cpp
* @file web_client/curl_web_client_url_encode.cc
* @brief CURLWebClient::UrlEncode() implementation.
*/
@@ -21,4 +21,4 @@ std::string CURLWebClient::UrlEncode(const std::string& value) {
std::string result(output);
curl_free(output);
return result;
}
}