reordered base initializers to quash g++ warnings
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user