From 8627ab108a48498864524ea1bd074b3c8eb25efb Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Fri, 23 May 2014 05:09:18 +0400 Subject: [PATCH] Addition to prev. revision [#METR-2944]. --- dbms/include/DB/AggregateFunctions/AggregateFunctionArray.h | 2 +- dbms/include/DB/AggregateFunctions/AggregateFunctionIf.h | 2 +- dbms/include/DB/AggregateFunctions/AggregateFunctionMerge.h | 2 +- dbms/include/DB/AggregateFunctions/AggregateFunctionState.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dbms/include/DB/AggregateFunctions/AggregateFunctionArray.h b/dbms/include/DB/AggregateFunctions/AggregateFunctionArray.h index 6b1f03dff60..ef7db17af8f 100644 --- a/dbms/include/DB/AggregateFunctions/AggregateFunctionArray.h +++ b/dbms/include/DB/AggregateFunctions/AggregateFunctionArray.h @@ -59,7 +59,7 @@ public: nested_func->create(place); } - void destroy(AggregateDataPtr place) const + void destroy(AggregateDataPtr place) const noexcept { nested_func->destroy(place); } diff --git a/dbms/include/DB/AggregateFunctions/AggregateFunctionIf.h b/dbms/include/DB/AggregateFunctions/AggregateFunctionIf.h index c9936106426..95af7e3015e 100644 --- a/dbms/include/DB/AggregateFunctions/AggregateFunctionIf.h +++ b/dbms/include/DB/AggregateFunctions/AggregateFunctionIf.h @@ -57,7 +57,7 @@ public: nested_func->create(place); } - void destroy(AggregateDataPtr place) const + void destroy(AggregateDataPtr place) const noexcept { nested_func->destroy(place); } diff --git a/dbms/include/DB/AggregateFunctions/AggregateFunctionMerge.h b/dbms/include/DB/AggregateFunctions/AggregateFunctionMerge.h index 96696f5ae82..b8081b77795 100644 --- a/dbms/include/DB/AggregateFunctions/AggregateFunctionMerge.h +++ b/dbms/include/DB/AggregateFunctions/AggregateFunctionMerge.h @@ -59,7 +59,7 @@ public: nested_func->create(place); } - void destroy(AggregateDataPtr place) const + void destroy(AggregateDataPtr place) const noexcept { nested_func->destroy(place); } diff --git a/dbms/include/DB/AggregateFunctions/AggregateFunctionState.h b/dbms/include/DB/AggregateFunctions/AggregateFunctionState.h index b5204ca959a..8b0169bdf51 100644 --- a/dbms/include/DB/AggregateFunctions/AggregateFunctionState.h +++ b/dbms/include/DB/AggregateFunctions/AggregateFunctionState.h @@ -55,7 +55,7 @@ public: nested_func->create(place); } - void destroy(AggregateDataPtr place) const + void destroy(AggregateDataPtr place) const noexcept { nested_func->destroy(place); }