Fixing warnings on order of default initialization
This commit is contained in:
@@ -27,8 +27,8 @@
|
|||||||
#include "xcDll.h"
|
#include "xcDll.h"
|
||||||
#include "plstr.h" // strdup and strfree
|
#include "plstr.h" // strdup and strfree
|
||||||
|
|
||||||
nsDll::nsDll(const char *libFullPath) : m_instance(NULL), m_status(DLL_OK),
|
nsDll::nsDll(const char *libFullPath) : m_fullpath(NULL), m_instance(NULL),
|
||||||
m_fullpath(NULL)
|
m_status(DLL_OK)
|
||||||
{
|
{
|
||||||
// XXX No initializer for PRTime's
|
// XXX No initializer for PRTime's
|
||||||
// m_lastModTime = 0;
|
// m_lastModTime = 0;
|
||||||
|
|||||||
@@ -27,8 +27,8 @@
|
|||||||
#include "xcDll.h"
|
#include "xcDll.h"
|
||||||
#include "plstr.h" // strdup and strfree
|
#include "plstr.h" // strdup and strfree
|
||||||
|
|
||||||
nsDll::nsDll(const char *libFullPath) : m_instance(NULL), m_status(DLL_OK),
|
nsDll::nsDll(const char *libFullPath) : m_fullpath(NULL), m_instance(NULL),
|
||||||
m_fullpath(NULL)
|
m_status(DLL_OK)
|
||||||
{
|
{
|
||||||
// XXX No initializer for PRTime's
|
// XXX No initializer for PRTime's
|
||||||
// m_lastModTime = 0;
|
// m_lastModTime = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user