Initial preparations for CURL and Discord integration.

This commit is contained in:
Sandu Liviu Catalin
2021-01-27 07:27:48 +02:00
parent 8257eb61d6
commit 95705e87c8
1751 changed files with 440547 additions and 854 deletions
+3 -3
View File
@@ -363,7 +363,7 @@ static String RandomString(Int32 len)
// Request the random fill
GetRandomString(str, len);
// Return ownership of the string
return std::move(str);
return str;
}
// ------------------------------------------------------------------------------------------------
@@ -377,7 +377,7 @@ static String RandomString(Int32 len, SQChar n)
// Request the random fill
GetRandomString(str, len, n);
// Return ownership of the string
return std::move(str);
return str;
}
// ------------------------------------------------------------------------------------------------
@@ -391,7 +391,7 @@ static String RandomString(Int32 len, SQChar m, SQChar n)
// Request the random fill
GetRandomString(str, len, m, n);
// Return ownership of the string
return std::move(str);
return str;
}
// ------------------------------------------------------------------------------------------------