From 7e92fa0ca017667bae32fa49eb59be554cfdaa32 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Fri, 25 Oct 2002 01:44:50 +0000 Subject: [PATCH] removed junk and added missing type name --- src/ca/comBuf.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/ca/comBuf.cpp b/src/ca/comBuf.cpp index ce4eb41d4..b211b3157 100644 --- a/src/ca/comBuf.cpp +++ b/src/ca/comBuf.cpp @@ -26,9 +26,6 @@ #define epicsAssertAuthor "Jeff Hill johill@lanl.gov" -#if 0 -#include "iocinf.h" -#endif #include "comBuf.h" #include "errlog.h" @@ -128,9 +125,9 @@ unsigned comBuf::push ( const epicsFloat64 * pValue, unsigned nElem ) epics_thro // throwing the exception from a function that isnt inline // shrinks the GNU compiled object code void comBuf::throwInsufficentBytesException () - epics_throws (( insufficentBytesAvailable )) + epics_throws (( comBuf::insufficentBytesAvailable )) { - throw insufficentBytesAvailable (); + throw comBuf::insufficentBytesAvailable (); } void comBuf::operator delete ( void *pCadaver ) epics_throws (())