Oh, and this one too, maybe it is fixed now?

This commit is contained in:
Inusaito Sayori
2014-08-08 07:07:51 -04:00
parent 4754c1322d
commit d7d06c8234

View File

@@ -400,7 +400,7 @@ std::string extractDomain(const std::string& in_url)
if (pos != std::string::npos)
{
S32 count = url.size()-pos+2;
size_t count = url.size()-pos+2;
url = url.substr(pos+2, count);
}