Skip to content

Commit

Permalink
Replaced std::format with fmt::format
Browse files Browse the repository at this point in the history
  • Loading branch information
SMJSGaming committed Jun 19, 2024
1 parent b323151 commit dda949b
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 @@ -149,7 +149,7 @@ unsigned int HttpInfo::getResponseCode() {
}

std::string HttpInfo::generateBasicInfo() {
return std::format("Method: {}\nProtocol: {}\nHost: {}\nPath: {}\nStatus Code: {}",
return fmt::format("Method: {}\nProtocol: {}\nHost: {}\nPath: {}\nStatus Code: {}",
this->formatMethod(),
this->formatProtocol(),
m_host,
Expand Down

0 comments on commit dda949b

Please sign in to comment.