From 6352940ce67bf13dde14b4e082a71cc2da54e324 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 22 Oct 2001 18:05:36 +0000 Subject: [PATCH] fixed borland warning --- src/cas/example/simple/exAsyncPV.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cas/example/simple/exAsyncPV.cc b/src/cas/example/simple/exAsyncPV.cc index 5a24249e9..a0dac2210 100644 --- a/src/cas/example/simple/exAsyncPV.cc +++ b/src/cas/example/simple/exAsyncPV.cc @@ -76,7 +76,7 @@ exAsyncWriteIO::~exAsyncWriteIO() // exAsyncWriteIO::expire() // (a virtual function that runs when the base timer expires) // -epicsTimerNotify::expireStatus exAsyncWriteIO::expire ( const epicsTime & currentTime ) +epicsTimerNotify::expireStatus exAsyncWriteIO::expire ( const epicsTime & /* currentTime */ ) { caStatus status; status = this->pv.update ( this->pValue ); @@ -111,7 +111,7 @@ exAsyncReadIO::~exAsyncReadIO() // exAsyncReadIO::expire() // (a virtual function that runs when the base timer expires) // -epicsTimerNotify::expireStatus exAsyncReadIO::expire ( const epicsTime & currentTime ) +epicsTimerNotify::expireStatus exAsyncReadIO::expire ( const epicsTime & /* currentTime */ ) { caStatus status;