reordered base initializers to quash g++ warnings

This commit is contained in:
Jeff Hill
1999-08-10 20:47:08 +00:00
parent c7437dfcb2
commit e7dd7eb9f4
2 changed files with 4 additions and 3 deletions

View File

@@ -114,8 +114,8 @@ void caServerI::show (unsigned level) const
caServerI::caServerI (caServer &tool, unsigned nPV) :
caServerOS (*this),
casEventRegistry (* (osiMutex *) this),
dgClient (*this),
chronIntIdResTable<casRes>(nPV*2u),
dgClient (*this),
//
// Set up periodic beacon interval
// (exponential back off to a plateau

View File

@@ -776,8 +776,9 @@ class casEventRegistry : private resTable <casEventMaskEntry, stringId> {
friend class casEventMaskEntry;
public:
casEventRegistry (osiMutex &mutexIn) : mutex(mutexIn), allocator(0),
resTable<casEventMaskEntry, stringId> (casEventRegistryHashTableSize) {}
casEventRegistry (osiMutex &mutexIn) :
resTable<casEventMaskEntry, stringId> (casEventRegistryHashTableSize),
mutex(mutexIn), allocator(0) {}
virtual ~casEventRegistry();