Skip to content

Commit

Permalink
Replaced std::vector with gd::vector
Browse files Browse the repository at this point in the history
  • Loading branch information
SMJSGaming committed Jun 19, 2024
1 parent dda949b commit 725a049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/objects/HttpInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ HttpInfo::ContentType HttpInfo::determineContentType(const std::string& content,
}

void HttpInfo::onResponse(CCHttpClient* client, CCHttpResponse* response) {
std::vector<char>* data = response->getResponseData();
gd::vector<char>* data = response->getResponseData();

m_response = std::string(data->begin(), data->end());
m_responseCode = response->getResponseCode();
Expand Down

0 comments on commit 725a049

Please sign in to comment.