From 021e060853009b31470d671315b4e7cab1e3dc33 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 17 Sep 2002 18:13:32 +0000 Subject: [PATCH] fixed gnu detected problem --- src/libCom/timer/epicsTimer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libCom/timer/epicsTimer.cpp b/src/libCom/timer/epicsTimer.cpp index 80c923b56..311cd00b7 100644 --- a/src/libCom/timer/epicsTimer.cpp +++ b/src/libCom/timer/epicsTimer.cpp @@ -118,7 +118,7 @@ epicsTimerNotify::expireStatus::expireStatus ( restart_t restartIn, const double & expireDelaySec ) : delay ( expireDelaySec ) { - if ( restartIn != restart ) { + if ( restartIn != epicsTimerNotify::restart ) { throw std::logic_error ( "no timer restart was requested, but a delay was specified?" ); }