1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-07-05 08:27:10 +02:00

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

View File

@ -233,7 +233,7 @@ static Buffer StrJustAlphaNumImpl(CSStr str, Uint32 len)
// Move the cursor to the end
b.Move(n);
// Return ownership of the buffer
return std::move(b);
return b;
}
// ------------------------------------------------------------------------------------------------
@ -295,7 +295,7 @@ static Buffer StrToLowercaseImpl(CSStr str, Uint32 len)
// Move the cursor to the end
b.Move(n);
// Return ownership of the buffer
return std::move(b);
return b;
}
// ------------------------------------------------------------------------------------------------
@ -357,7 +357,7 @@ static Buffer StrToUppercaseImpl(CSStr str, Uint32 len)
// Move the cursor to the end
b.Move(n);
// Return ownership of the buffer
return std::move(b);
return b;
}
// ------------------------------------------------------------------------------------------------