Fixing warnings on order of default initialization

This commit is contained in:
dp@netscape.com
1999-02-06 20:27:16 +00:00
parent 57e07cfd46
commit f78602f40c
2 changed files with 4 additions and 4 deletions

View File

@@ -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;

View File

@@ -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;