general: fixes for gcc 13

This commit is contained in:
Liam 2023-04-02 19:02:04 -04:00
parent 0730dc6c44
commit a9623d5f55
6 changed files with 14 additions and 28 deletions

View file

@ -21,7 +21,7 @@ bool VerifyLogin(const std::string& host, const std::string& username, const std
return username.empty();
}
return username == *iter;
return *iter == username;
}
} // namespace WebService