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:
authorBrecht Van Lommel <brecht@blender.org>2021-09-09 18:10:09 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-09-09 18:11:01 +0300
commit45c44a5b5b6251835cfd21f64c59ee23472941de (patch)
treee9dcf243ad3493e97904b5e389e5185d0b78a3e7
parented4ef77f496e5da6bf20cfbc4165274c67b26822 (diff)
Fix compiler warnings about virtual functions but non-virtual destructor
-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 25188531580..79a6faf499b 100644
--- a/source/blender/functions/FN_field.hh
+++ b/source/blender/functions/FN_field.hh
@@ -69,7 +69,7 @@ class FieldNode {
{
}
- ~FieldNode() = default;
+ virtual ~FieldNode() = default;
virtual const CPPType &output_cpp_type(int output_index) const = 0;