mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-07 12:06:09 +00:00
refactor: unglob std::wstring
This commit is contained in:
@@ -136,9 +136,9 @@ int BufferedReader::read(wchar_t cbuf[], unsigned int off, unsigned int len)
|
||||
//or a carriage return followed immediately by a linefeed.
|
||||
//Returns:
|
||||
//A String containing the contents of the line, not including any line-termination characters, or null if the end of the stream has been reached
|
||||
wstring BufferedReader::readLine()
|
||||
std::wstring BufferedReader::readLine()
|
||||
{
|
||||
wstring output = L"";
|
||||
std::wstring output = L"";
|
||||
bool newLineCharFound = false;
|
||||
|
||||
while( readMark < bufferedMark )
|
||||
|
||||
Reference in New Issue
Block a user