Fixing warnings on order of default initialization

git-svn-id: svn://10.0.0.236/trunk@19931 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dp%netscape.com
1999-02-06 20:27:16 +00:00
parent 098fef3119
commit 0f4ca4981d
2 changed files with 4 additions and 4 deletions

View File

@@ -27,8 +27,8 @@
#include "xcDll.h"
#include "plstr.h" // strdup and strfree
nsDll::nsDll(const char *libFullPath) : m_instance(NULL), m_status(DLL_OK),
m_fullpath(NULL)
nsDll::nsDll(const char *libFullPath) : m_fullpath(NULL), m_instance(NULL),
m_status(DLL_OK)
{
// XXX No initializer for PRTime's
// m_lastModTime = 0;

View File

@@ -27,8 +27,8 @@
#include "xcDll.h"
#include "plstr.h" // strdup and strfree
nsDll::nsDll(const char *libFullPath) : m_instance(NULL), m_status(DLL_OK),
m_fullpath(NULL)
nsDll::nsDll(const char *libFullPath) : m_fullpath(NULL), m_instance(NULL),
m_status(DLL_OK)
{
// XXX No initializer for PRTime's
// m_lastModTime = 0;