mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 23:27:46 +00:00
general: fixes for gcc 13
This commit is contained in:
parent
6f649f250f
commit
bbc9f0d3e9
6 changed files with 14 additions and 28 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue