X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=source%2Fcomm%2FCodec.cpp;h=08e318b8e71c8946b124b69bbcbcaf84e9b8673f;hb=f34b8069233e9e09208339bb79d8576c1ff962e1;hp=4d13c182a57dea0d94abe435887ec080105e9715;hpb=93366a0bda79e6fd6e7dad6316bfcf8cc82f5731;p=anna.git diff --git a/source/comm/Codec.cpp b/source/comm/Codec.cpp index 4d13c18..08e318b 100644 --- a/source/comm/Codec.cpp +++ b/source/comm/Codec.cpp @@ -16,17 +16,17 @@ using namespace std; using namespace anna; const comm::Variable* comm::Codec::attach(const char* name, Second& value) -throw(RuntimeException) { +noexcept(false) { return CompatCodec::attach(name, size(), value.refValue()); } const comm::Variable* comm::Codec::attach(const char* name, Millisecond& value) -throw(RuntimeException) { +noexcept(false) { return CompatCodec::attach(name, size(), (int&) value.refValue()); } const comm::Variable* comm::Codec::attach(const char* name, Microsecond& value) -throw(RuntimeException) { +noexcept(false) { return CompatCodec::attach(name, size(), (S64&) value.refValue()); }