Fix reordering warnings

This commit is contained in:
Josiah VanderZee 2022-11-13 08:03:21 -06:00 committed by JosiahWI
parent d4eea38a65
commit 56c4a5a945
No known key found for this signature in database
GPG Key ID: C7BB8573A4ABC4B9
2 changed files with 4 additions and 4 deletions

View File

@ -113,13 +113,13 @@ CIrrDeviceLinux::CIrrDeviceLinux(const SIrrlichtCreationParameters& param)
XDisplay(0), VisualInfo(0), Screennr(0), XWindow(0), StdHints(0),
XInputMethod(0), XInputContext(0),
HasNetWM(false),
#endif
#if defined(_IRR_LINUX_X11_XINPUT2_)
currentTouchedCount(0),
#endif
Width(param.WindowSize.Width), Height(param.WindowSize.Height),
WindowHasFocus(false), WindowMinimized(false),
ExternalWindow(false), AutorepeatSupport(0)
#if defined(_IRR_LINUX_X11_XINPUT2_)
, currentTouchedCount(0)
#endif
{
#ifdef _DEBUG
setDebugName("CIrrDeviceLinux");

View File

@ -12,7 +12,7 @@ namespace io
CWriteFile::CWriteFile(const io::path& fileName, bool append)
: FileSize(0), Filename(fileName)
: Filename(fileName), FileSize(0)
{
#ifdef _DEBUG
setDebugName("CWriteFile");