Cleanup: clang-tidy

readability-named-parameter
This commit is contained in:
Jacques Lucke 2021-08-30 17:30:04 +02:00
parent 1e69a25043
commit 171c3bd2b0
1 changed files with 2 additions and 2 deletions

View File

@ -41,14 +41,14 @@ static bNodeSocketTemplate geo_node_curve_fill_out[] = {
{-1, ""},
};
static void geo_node_curve_fill_layout(uiLayout *layout, bContext *, PointerRNA *ptr)
static void geo_node_curve_fill_layout(uiLayout *layout, bContext *UNUSED(C), PointerRNA *ptr)
{
uiItemR(layout, ptr, "mode", UI_ITEM_R_EXPAND, nullptr, ICON_NONE);
}
namespace blender::nodes {
static void geo_node_curve_fill_init(bNodeTree *, bNode *node)
static void geo_node_curve_fill_init(bNodeTree *UNUSED(ntree), bNode *node)
{
NodeGeometryCurveFill *data = (NodeGeometryCurveFill *)MEM_callocN(sizeof(NodeGeometryCurveFill),
__func__);