UICommon/NetPlayIndex: Use a std::string_view for EncryptID()/DecryptID()

These parameters only acted as views into the provided strings, so these
can just be turned into non-owning string views.
This commit is contained in:
Lioncash
2019-08-04 12:32:29 -04:00
parent 2830fe820d
commit 75f3656804
2 changed files with 5 additions and 4 deletions

View File

@ -8,6 +8,7 @@
#include <map>
#include <optional>
#include <string>
#include <string_view>
#include <thread>
#include <utility>
#include <vector>
@ -29,8 +30,8 @@ struct NetPlaySession
bool has_password;
bool in_game;
bool EncryptID(const std::string& password);
std::optional<std::string> DecryptID(const std::string& password) const;
bool EncryptID(std::string_view password);
std::optional<std::string> DecryptID(std::string_view password) const;
};
class NetPlayIndex