X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=source%2Fdiameter%2Fcodec%2Fbasetypes%2FFloat64.cpp;h=2baf209f35ebe04cf18e173a62913cf93e9383c7;hb=e14f6ba5183403d7bbf589ef87b0643b12a0f72c;hp=0693e3576773085f013672565ea30b4493cbdcf1;hpb=93366a0bda79e6fd6e7dad6316bfcf8cc82f5731;p=anna.git diff --git a/source/diameter/codec/basetypes/Float64.cpp b/source/diameter/codec/basetypes/Float64.cpp index 0693e35..2baf209 100644 --- a/source/diameter/codec/basetypes/Float64.cpp +++ b/source/diameter/codec/basetypes/Float64.cpp @@ -13,7 +13,7 @@ //------------------------------------------------------------------------------ //--------------------------------------------------------- Float64::codeBasic() //------------------------------------------------------------------------------ -void anna::diameter::codec::basetypes::Float64::codeBasic(char* buffer, int &size) throw(anna::RuntimeException) { +void anna::diameter::codec::basetypes::Float64::codeBasic(char* buffer, int &size) noexcept(false) { /*buffer=*/ anna::comm::functions::codeDouble(buffer, a_value); size = getSize(); @@ -23,7 +23,7 @@ void anna::diameter::codec::basetypes::Float64::codeBasic(char* buffer, int &siz //------------------------------------------------------------------------------ //------------------------------------------------ Float64::setPrintableString() //------------------------------------------------------------------------------ -void anna::diameter::codec::basetypes::Float64::setPrintableString(const char * printableString) throw(anna::RuntimeException) { +void anna::diameter::codec::basetypes::Float64::setPrintableString(const char * printableString) noexcept(false) { setValue(atof/*strtod*/(printableString)); } @@ -31,7 +31,7 @@ void anna::diameter::codec::basetypes::Float64::setPrintableString(const char * //------------------------------------------------------------------------------ //------------------------------------------------------------ Float64::decode() //------------------------------------------------------------------------------ -void anna::diameter::codec::basetypes::Float64::decode(const char* buffer, const int size) throw(anna::RuntimeException) { +void anna::diameter::codec::basetypes::Float64::decode(const char* buffer, const int size) noexcept(false) { if(!buffer) throw anna::RuntimeException("Float64::decode | Null Buffer provided", ANNA_FILE_LOCATION);