Skip to content

Commit

Permalink
Added semicolon on shouldAddDefaultHeader
Browse files Browse the repository at this point in the history
  • Loading branch information
zastrixarundell committed Apr 25, 2020
1 parent 2a0b47b commit 4a5cba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/websockets_client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ namespace websockets {
bool shouldAddDefaultHeader(const std::string& keyWord, const std::vector<std::pair<WSString, WSString>>& customHeaders) {
for (const auto& header : customHeaders) {
if(!keyWord.compare(header.first)) {
return false
return false;
}
}

Expand Down

0 comments on commit 4a5cba8

Please sign in to comment.