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:
authorHans Goudey <h.goudey@me.com>2021-08-27 17:49:36 +0300
committerHans Goudey <h.goudey@me.com>2021-08-27 17:49:36 +0300
commitc3206bd2a076be81c1aee2ef2011790fa6243d42 (patch)
tree15421cbd629754e76cd5dd63aee772b812279c61 /source/blender/functions/tests/FN_field_test.cc
parent26e7fef920796a2d7609755df5f2cd6afe5e4bac (diff)
Rename Function to FieldFunction
Diffstat (limited to 'source/blender/functions/tests/FN_field_test.cc')
-rw-r--r--source/blender/functions/tests/FN_field_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/functions/tests/FN_field_test.cc b/source/blender/functions/tests/FN_field_test.cc
index 3addc054d34..902bea8e655 100644
--- a/source/blender/functions/tests/FN_field_test.cc
+++ b/source/blender/functions/tests/FN_field_test.cc
@@ -10,7 +10,7 @@ namespace blender::fn::tests {
TEST(field, ConstantInput)
{
- Function function = Function(std::make_unique<CustomMF_Constant<int>>(10), {});
+ FieldFunction function = FieldFunction(std::make_unique<CustomMF_Constant<int>>(10), {});
Field constant_field = Field(CPPType::get<int>(), function, 0);
Array<int> result(4);
@@ -49,7 +49,7 @@ class IndexFunction : public MultiFunction {
TEST(field, IndexInput)
{
- Function function = Function(std::make_unique<IndexFunction>(), {});
+ FieldFunction function = FieldFunction(std::make_unique<IndexFunction>(), {});
Field index_field = Field(CPPType::get<int>(), function, 0);
Array<int> result_1(4);