mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-21 17:30:46 +00:00
Warning fix
This commit is contained in:
parent
d34495a23f
commit
b0181dfe8f
@ -17,7 +17,7 @@ struct UrlEncoder
|
||||
UrlEncoder() : paramCount(0)
|
||||
{
|
||||
data.reserve(256);
|
||||
};
|
||||
}
|
||||
|
||||
void Add(const std::string &key, const std::string &value)
|
||||
{
|
||||
@ -106,7 +106,7 @@ struct UrlEncoder
|
||||
|
||||
class Url {
|
||||
public:
|
||||
Url(const std::string url) : url_(url), valid_(false) {
|
||||
Url(const std::string url) : valid_(false), url_(url) {
|
||||
Split();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user