[Chore](compile) remove some unused static on inline function to reduce compile time (#17603)

remove some unused static on inline function to reduce compile time
This commit is contained in:
Pxl
2023-03-13 11:11:59 +08:00
committed by GitHub
parent 782001c75b
commit 16fc3a0e22
75 changed files with 363 additions and 386 deletions

View File

@ -23,7 +23,7 @@
namespace doris::vectorized {
template <bool nullable, template <bool, typename> class AggregateFunctionTemplate>
static IAggregateFunction* create_with_int_data_type(const DataTypes& argument_type) {
IAggregateFunction* create_with_int_data_type(const DataTypes& argument_type) {
auto type = remove_nullable(argument_type[0]);
WhichDataType which(type);
#define DISPATCH(TYPE) \