diff --git a/EventFilter/CSCTFRawToDigi/src/CSCTFEvent.cc b/EventFilter/CSCTFRawToDigi/src/CSCTFEvent.cc index e8535c8d3c3ed..dcbfef7b396ac 100644 --- a/EventFilter/CSCTFRawToDigi/src/CSCTFEvent.cc +++ b/EventFilter/CSCTFRawToDigi/src/CSCTFEvent.cc @@ -3,7 +3,7 @@ #include #include -unsigned int CSCTFEvent::unpack(const unsigned short *buf, unsigned int length) throw() { +unsigned int CSCTFEvent::unpack(const unsigned short *buf, unsigned int length) { // Clean up nRecords = 0; bzero(sp,sizeof(sp)); diff --git a/EventFilter/CSCTFRawToDigi/src/CSCTFEvent.h b/EventFilter/CSCTFRawToDigi/src/CSCTFEvent.h index 0592e00d7400c..cc869452fd5ee 100644 --- a/EventFilter/CSCTFRawToDigi/src/CSCTFEvent.h +++ b/EventFilter/CSCTFRawToDigi/src/CSCTFEvent.h @@ -29,7 +29,7 @@ class CSCTFEvent { return retval; } - unsigned int unpack(const unsigned short *buf, unsigned int length) throw() ; + unsigned int unpack(const unsigned short *buf, unsigned int length); CSCTFEvent(void){} };