X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=source%2Fdbms%2FLongBlock.cpp;fp=source%2Fdbms%2FLongBlock.cpp;h=09f11461f2b2c7c297c84fde8f8197d2eb3a649f;hp=da1796a753e29b270fa16bf59992dd0d7dfe6b27;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hpb=af9c86ffb0e28d35ad94d99c5f77e41578c972b4 diff --git a/source/dbms/LongBlock.cpp b/source/dbms/LongBlock.cpp index da1796a..09f1146 100644 --- a/source/dbms/LongBlock.cpp +++ b/source/dbms/LongBlock.cpp @@ -13,7 +13,7 @@ using namespace anna; dbms::LongBlock& dbms::LongBlock::operator = (const dbms::LongBlock & other) -throw(RuntimeException) { +noexcept(false) { if(this == &other) return *this; @@ -26,14 +26,14 @@ throw(RuntimeException) { } dbms::LongBlock& dbms::LongBlock::operator = (const anna::DataBlock & value) -throw(RuntimeException) { +noexcept(false) { a_value = value; setNull(a_value.isEmpty()); return *this; } std::string dbms::LongBlock::asString() const -throw() { +{ std::string result("dbms::LongBlock { "); result += dbms::Data::asString(); result += " | Size: ";