Fix clang-tidy

This commit is contained in:
Alexey Milovidov 2022-04-18 02:13:28 +02:00
parent 6de5d8a554
commit 70d7ba5d61

View File

@ -201,7 +201,7 @@ static void compileFunction(llvm::Module & module, const IFunctionBase & functio
for (size_t i = 0; i < arg_types.size(); ++i)
{
auto & column = columns[i];
auto & type = arg_types[i];
const auto & type = arg_types[i];
auto * value = b.CreateLoad(toNativeType(b, removeNullable(type)), column.data);
if (!type->isNullable())