summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/lzma/CPP/Common/StdOutStream.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2023-12-06 07:58:49 +1100
committer Vas Crabb <vas@vastheman.com>2023-12-06 07:58:49 +1100
commit79bef1e23049fdac25f1fefd132e0b6c7d2cc3a1 (patch)
tree643e9313fe86f583c4022c338677cbc12b761df7 /3rdparty/lzma/CPP/Common/StdOutStream.cpp
parent512ccf0c7c9b4f08e41038b2ed2de220e140385b (diff)
3rdparty/lzma: Updated to version 23.01.
Diffstat (limited to '3rdparty/lzma/CPP/Common/StdOutStream.cpp')
-rw-r--r--3rdparty/lzma/CPP/Common/StdOutStream.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/3rdparty/lzma/CPP/Common/StdOutStream.cpp b/3rdparty/lzma/CPP/Common/StdOutStream.cpp
index 40799e22642..cfa5fdec678 100644
--- a/3rdparty/lzma/CPP/Common/StdOutStream.cpp
+++ b/3rdparty/lzma/CPP/Common/StdOutStream.cpp
@@ -11,11 +11,12 @@
#include "StringConvert.h"
#include "UTFConvert.h"
-#define kFileOpenMode "wt"
-
CStdOutStream g_StdOut(stdout);
CStdOutStream g_StdErr(stderr);
+/*
+// #define kFileOpenMode "wt"
+
bool CStdOutStream::Open(const char *fileName) throw()
{
Close();
@@ -34,6 +35,7 @@ bool CStdOutStream::Close() throw()
_streamIsOpen = false;
return true;
}
+*/
bool CStdOutStream::Flush() throw()
{
@@ -73,7 +75,7 @@ void CStdOutStream::Convert_UString_to_AString(const UString &src, AString &dest
static const wchar_t kReplaceChar = '_';
-void CStdOutStream::Normalize_UString__LF_Allowed(UString &s)
+void CStdOutStream::Normalize_UString_LF_Allowed(UString &s)
{
unsigned len = s.Len();
wchar_t *d = s.GetBuf();