Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/functions/tests/FN_field_test.cc')
-rw-r--r--source/blender/functions/tests/FN_field_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/functions/tests/FN_field_test.cc b/source/blender/functions/tests/FN_field_test.cc
index ea3c0471411..8c5cc817174 100644
--- a/source/blender/functions/tests/FN_field_test.cc
+++ b/source/blender/functions/tests/FN_field_test.cc
@@ -34,9 +34,9 @@ class IndexFieldInput final : public FieldInput {
{
}
- GVArray get_varray_for_context(const FieldContext &UNUSED(context),
+ GVArray get_varray_for_context(const FieldContext & /*context*/,
IndexMask mask,
- ResourceScope &UNUSED(scope)) const final
+ ResourceScope & /*scope*/) const final
{
auto index_func = [](int i) { return i; };
return VArray<int>::ForFunc(mask.min_array_size(), index_func);
@@ -171,7 +171,7 @@ class TwoOutputFunction : public MultiFunction {
this->set_signature(&signature_);
}
- void call(IndexMask mask, MFParams params, MFContext UNUSED(context)) const override
+ void call(IndexMask mask, MFParams params, MFContext /*context*/) const override
{
const VArray<int> &in1 = params.readonly_single_input<int>(0, "In1");
const VArray<int> &in2 = params.readonly_single_input<int>(1, "In2");