Hello, team.
We are trying to build our RFA based application with latest gcc-8.2.0 (-std=c++17 standard flag) and faced with issue that the dynamic exception specifications are not allowed in ISO C++17.
rfa-7.2.1/Include/Message/RespMsg.h:245:70: error: ISO C++17 does not allow dynamic exception specifications void setPrincipalIdentity( const rfa::common::PrincipalIdentity& ) throw(rfa::common::InvalidUsageException); ^~~~~ rfa-7.2.1/Include/Message/RespMsg.h:260:107: error: ISO C++17 does not allow dynamic exception specifications rfa::common::UInt8 validateMsg(rfa::common::RFA_String* warningText = 0, bool isReissue = false ) const throw( rfa::common::InvalidUsageException ); ^~~~~
Is it possible to provide C++17 compatible RFA library version?