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:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user