Remove unused FileWriter fields

This commit is contained in:
Jack Andersen 2018-05-25 12:02:23 -10:00
parent d13e04cbaf
commit 9a7bee95c4
1 changed files with 0 additions and 2 deletions

View File

@ -11,7 +11,6 @@ namespace athena::io
{
FileWriter::FileWriter(std::string_view filename, bool overwrite, bool globalErr)
: m_fileHandle(NULL),
m_bytePosition(0),
m_globalErr(globalErr)
{
#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)
: m_fileHandle(NULL),
m_bytePosition(0),
m_globalErr(globalErr)
{
#if _WIN32