Skip to content

Commit

Permalink
Merge pull request #150 from Negusbuk/master
Browse files Browse the repository at this point in the history
removed dynamic exception specification as this is not allowed in ISO C++17
  • Loading branch information
Negusbuk authored Jun 14, 2019
2 parents 0fb0e91 + 52533b2 commit 6bf81a7
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion devices/Arduino/ArduinoComHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ void ArduinoComHandler::ReceiveString( char *receiveString ) {
/*!
\internal
*/
void ArduinoComHandler::OpenIoPort( void ) throw (int) {
void ArduinoComHandler::OpenIoPort( void ) noexcept(false) {

// open io port ( read/write | no term control | no DCD line check )
fIoPortFileDescriptor = open( fIoPort, O_RDWR | O_NOCTTY | O_NDELAY );
Expand Down
2 changes: 1 addition & 1 deletion devices/Arduino/ArduinoComHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class ArduinoComHandler {

private:

void OpenIoPort( void ) throw (int);
void OpenIoPort( void ) noexcept(false);
void InitializeIoPort( void );
void RestoreIoPort( void );
void CloseIoPort( void );
Expand Down
2 changes: 1 addition & 1 deletion devices/Cori/CoriFlowComHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void CoriFlowComHandler::ReceiveString( char *receiveString ) {
/*!
\internal
*/
void CoriFlowComHandler::OpenIoPort( void ) throw (int) {
void CoriFlowComHandler::OpenIoPort( void ) noexcept(false) {

// open io port ( read/write | no term control | no DCD line check )
fIoPortFileDescriptor = open( fIoPort, O_RDWR | O_NOCTTY | O_NDELAY );
Expand Down
2 changes: 1 addition & 1 deletion devices/Cori/CoriFlowComHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class CoriFlowComHandler {

private:

void OpenIoPort( void ) throw (int);
void OpenIoPort( void ) noexcept(false);
void InitializeIoPort( void );
void RestoreIoPort( void );
void CloseIoPort( void );
Expand Down
2 changes: 1 addition & 1 deletion devices/Huber/PetiteFleurComHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void PetiteFleurComHandler::ReceiveString( char *receiveString ) {
/*!
\internal
*/
void PetiteFleurComHandler::OpenIoPort( void ) throw (int) {
void PetiteFleurComHandler::OpenIoPort( void ) noexcept(false) {

// open io port ( read/write | no term control | no DCD line check )
fIoPortFileDescriptor = open( fIoPort, O_RDWR | O_NOCTTY | O_NDELAY );
Expand Down
2 changes: 1 addition & 1 deletion devices/Huber/PetiteFleurComHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class PetiteFleurComHandler {

private:

void OpenIoPort( void ) throw (int);
void OpenIoPort( void ) noexcept(false);
void InitializeIoPort( void );
void RestoreIoPort( void );
void CloseIoPort( void );
Expand Down
2 changes: 1 addition & 1 deletion devices/Iota/Iota300ComHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void Iota300ComHandler::ReceiveString( char *receiveString ) {
/*!
\internal
*/
void Iota300ComHandler::OpenIoPort( void ) throw (int) {
void Iota300ComHandler::OpenIoPort( void ) noexcept(false) {

// open io port ( read/write | no term control | no DCD line check )
fIoPortFileDescriptor = open( fIoPort, O_RDWR | O_NOCTTY | O_NDELAY );
Expand Down
2 changes: 1 addition & 1 deletion devices/Iota/Iota300ComHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class Iota300ComHandler {

private:

void OpenIoPort( void ) throw (int);
void OpenIoPort( void ) noexcept(false);
void InitializeIoPort( void );
void RestoreIoPort( void );
void CloseIoPort( void );
Expand Down
2 changes: 1 addition & 1 deletion devices/Julabo/FP50ComHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ void FP50ComHandler::ReceiveString( char *receiveString ) {
/*!
\internal
*/
void FP50ComHandler::OpenIoPort( void ) throw (int) {
void FP50ComHandler::OpenIoPort( void ) noexcept(false) {

// open io port ( read/write | no term control | no DCD line check )
fIoPortFileDescriptor = open( fIoPort, O_RDWR | O_NOCTTY | O_NDELAY );
Expand Down
2 changes: 1 addition & 1 deletion devices/Julabo/FP50ComHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class FP50ComHandler {

private:

void OpenIoPort( void ) throw (int);
void OpenIoPort( void ) noexcept(false);
void InitializeIoPort( void );
void RestoreIoPort( void );
void CloseIoPort( void );
Expand Down
2 changes: 1 addition & 1 deletion devices/Keithley/KMMComHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void KMMComHandler::ReceiveString( char *receiveString ) {
/*!
\internal
*/
void KMMComHandler::OpenIoPort( void ) throw (int)
void KMMComHandler::OpenIoPort( void ) noexcept(false)
{

// open io port ( read/write | no term control | no DCD line check )
Expand Down
2 changes: 1 addition & 1 deletion devices/Keithley/KMMComHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ class KMMComHandler {

private:

void OpenIoPort( void ) throw (int) ;
void OpenIoPort( void ) noexcept(false);
void InitializeIoPort( void );
void RestoreIoPort( void );
void CloseIoPort( void );
Expand Down
2 changes: 1 addition & 1 deletion documentation/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ site_author: Andreas Mussgiller

repo_url: https://github.com/DESY-FH-ELab/cmstkmodlab

pages:
nav:
- Home: index.md
- Build:
- configure: build/configure.md
Expand Down

0 comments on commit 6bf81a7

Please sign in to comment.