From 43a5ce763ba0ed36ffd9ae06d52773be0612f86f Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Fri, 7 Sep 2001 23:25:54 +0000 Subject: [PATCH] fixed gnu warning --- src/ca/comBuf.h | 4 ++-- src/ca/comQueRecv.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ca/comBuf.h b/src/ca/comBuf.h index 1ad228438..ab4a9b3e1 100644 --- a/src/ca/comBuf.h +++ b/src/ca/comBuf.h @@ -96,8 +96,8 @@ private: static epicsMutex freeListMutex; }; -inline comBuf::comBuf () : nextWriteIndex ( 0u ), - nextReadIndex ( 0u ), commitIndex ( 0u ) +inline comBuf::comBuf () : commitIndex ( 0u ), + nextWriteIndex ( 0u ), nextReadIndex ( 0u ) { } diff --git a/src/ca/comQueRecv.h b/src/ca/comQueRecv.h index 95555caad..9adca148f 100644 --- a/src/ca/comQueRecv.h +++ b/src/ca/comQueRecv.h @@ -92,4 +92,4 @@ inline epicsFloat64 comQueRecv::popFloat64 () return tmp; } -#endif // ifndef comQueRecvh \ No newline at end of file +#endif // ifndef comQueRecvh