Addition to prev. revision [#METR-2944].

This commit is contained in:
Alexey Milovidov 2014-05-23 05:09:18 +04:00
parent 79213536df
commit 8627ab108a
4 changed files with 4 additions and 4 deletions

View File

@ -59,7 +59,7 @@ public:
nested_func->create(place);
}
void destroy(AggregateDataPtr place) const
void destroy(AggregateDataPtr place) const noexcept
{
nested_func->destroy(place);
}

View File

@ -57,7 +57,7 @@ public:
nested_func->create(place);
}
void destroy(AggregateDataPtr place) const
void destroy(AggregateDataPtr place) const noexcept
{
nested_func->destroy(place);
}

View File

@ -59,7 +59,7 @@ public:
nested_func->create(place);
}
void destroy(AggregateDataPtr place) const
void destroy(AggregateDataPtr place) const noexcept
{
nested_func->destroy(place);
}

View File

@ -55,7 +55,7 @@ public:
nested_func->create(place);
}
void destroy(AggregateDataPtr place) const
void destroy(AggregateDataPtr place) const noexcept
{
nested_func->destroy(place);
}