From 8352aeb39880d6e46ae6a1c2a53561292e9d787f Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 9 May 2002 15:00:40 +0000 Subject: [PATCH] reordered ctor init to eliminate gnu warning --- src/ca/oldCAC.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ca/oldCAC.cpp b/src/ca/oldCAC.cpp index a213870ef..28979ac2a 100644 --- a/src/ca/oldCAC.cpp +++ b/src/ca/oldCAC.cpp @@ -30,9 +30,9 @@ extern epicsThreadPrivateId caClientContextId; oldCAC::oldCAC ( bool enablePreemptiveCallback ) : clientCtx ( * new cac ( *this, enablePreemptiveCallback ) ), - ca_exception_func ( 0 ), ca_exception_arg ( 0 ), + pCallbackGuard ( 0 ), ca_exception_func ( 0 ), ca_exception_arg ( 0 ), pVPrintfFunc ( errlogVprintf ), fdRegFunc ( 0 ), fdRegArg ( 0 ), - pCallbackGuard ( 0 ), pndRecvCnt ( 0u ), ioSeqNo ( 0u ) + pndRecvCnt ( 0u ), ioSeqNo ( 0u ) { if ( enablePreemptiveCallback ) { this->pCallbackGuard = new epicsGuard < callbackMutex >