refactor: unglob std::wstring

This commit is contained in:
Tropical
2026-03-06 11:50:22 -06:00
committed by JuiceyDev
parent c571014bc9
commit cff2fc5f44
581 changed files with 2156 additions and 2154 deletions

View File

@@ -179,7 +179,7 @@ void DataOutputStream::writeChar( wchar_t v )
//If no exception is thrown, the counter written is incremented by twice the length of s.
//Parameters:
//s - a String value to be written.
void DataOutputStream::writeChars(const wstring& str)
void DataOutputStream::writeChars(const std::wstring& str)
{
for( unsigned int i = 0; i < str.length(); i++)
{
@@ -209,7 +209,7 @@ void DataOutputStream::writeBoolean(bool b)
//This will be at least two plus the length of str, and at most two plus thrice the length of str.
//Parameters:
//str - a string to be written.
void DataOutputStream::writeUTF(const wstring& str)
void DataOutputStream::writeUTF(const std::wstring& str)
{
int strlen = (int)str.length();
int utflen = 0;