Skip to content

Commit

Permalink
Update LeastGreatestGeneric.h
Browse files Browse the repository at this point in the history
  • Loading branch information
rschu1ze authored Nov 28, 2024
1 parent db065b4 commit cc14a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Functions/LeastGreatestGeneric.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class LeastGreatestOverloadResolver : public IFunctionOverloadResolver
argument_types.push_back(argument.type);

/// More efficient specialization for two numeric arguments.
if (arguments.size() == 2 && isNumber(arguments[0].type) && isNumber(arguments[1].type))
if (arguments.size() == 2 && isNumber(arguments[0].type) && isNumber(arguments[1].type))
return std::make_unique<FunctionToFunctionBaseAdaptor>(SpecializedFunction::create(context), argument_types, return_type);

return std::make_unique<FunctionToFunctionBaseAdaptor>(
Expand Down

0 comments on commit cc14a26

Please sign in to comment.