mirror of https://github.com/libAthena/athena.git
Remove unused FileWriter fields
This commit is contained in:
parent
d13e04cbaf
commit
9a7bee95c4
|
@ -11,7 +11,6 @@ namespace athena::io
|
||||||
{
|
{
|
||||||
FileWriter::FileWriter(std::string_view filename, bool overwrite, bool globalErr)
|
FileWriter::FileWriter(std::string_view filename, bool overwrite, bool globalErr)
|
||||||
: m_fileHandle(NULL),
|
: m_fileHandle(NULL),
|
||||||
m_bytePosition(0),
|
|
||||||
m_globalErr(globalErr)
|
m_globalErr(globalErr)
|
||||||
{
|
{
|
||||||
#if _WIN32
|
#if _WIN32
|
||||||
|
@ -24,7 +23,6 @@ FileWriter::FileWriter(std::string_view filename, bool overwrite, bool globalErr
|
||||||
|
|
||||||
FileWriter::FileWriter(std::wstring_view filename, bool overwrite, bool globalErr)
|
FileWriter::FileWriter(std::wstring_view filename, bool overwrite, bool globalErr)
|
||||||
: m_fileHandle(NULL),
|
: m_fileHandle(NULL),
|
||||||
m_bytePosition(0),
|
|
||||||
m_globalErr(globalErr)
|
m_globalErr(globalErr)
|
||||||
{
|
{
|
||||||
#if _WIN32
|
#if _WIN32
|
||||||
|
|
Loading…
Reference in New Issue