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:
authorJacques Lucke <jacques@blender.org>2021-12-12 10:58:55 +0300
committerJacques Lucke <jacques@blender.org>2021-12-12 10:58:55 +0300
commitb444e1be0fdc87991ae483919f9d8259f2d79130 (patch)
tree4e6b8aad414ad3b74b1c369aaa9210557e196081 /source/blender/functions
parent8c55481e337c9c5232766d74045b43c1956b2bc1 (diff)
Cleanup: use struct instead of class
Using `class` and `struct` for the same type can cause issues on windows.
Diffstat (limited to 'source/blender/functions')
-rw-r--r--source/blender/functions/FN_field.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/functions/FN_field.hh b/source/blender/functions/FN_field.hh
index 289ced8929f..57c2753b951 100644
--- a/source/blender/functions/FN_field.hh
+++ b/source/blender/functions/FN_field.hh
@@ -60,7 +60,7 @@
namespace blender::fn {
class FieldInput;
-class FieldInputs;
+struct FieldInputs;
/**
* A node in a field-tree. It has at least one output that can be referenced by fields.