From 6b2334cecf718734be0e9b562933740aa9cd329a Mon Sep 17 00:00:00 2001 From: Serguey Zefirov Date: Tue, 10 Dec 2024 13:55:08 +0300 Subject: [PATCH] Fix build --- dbcon/execplan/arithmeticoperator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbcon/execplan/arithmeticoperator.h b/dbcon/execplan/arithmeticoperator.h index 87be33a0e..81a37f7b1 100644 --- a/dbcon/execplan/arithmeticoperator.h +++ b/dbcon/execplan/arithmeticoperator.h @@ -333,7 +333,7 @@ inline result_t ArithmeticOperator::execute(result_t op1, result_t op2, bool& is } else { - return T{0}; + return 0; } } switch (fOp)