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:
authorAlex Fuller <mistaed>2019-08-27 13:33:09 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-08-27 13:50:08 +0300
commitee2bed7947413eb9175e59608eb8c8ac0e82b594 (patch)
tree3762f0f82ee2fc7db97da8e8f4a3aacf06c33ea1 /intern/cycles/graph
parent9169d401757c448e7c5e6850914123dd3de2afed (diff)
Fix undefined symbols for ccl::Node with some compilers and build options
Differential Revision: https://developer.blender.org/D5590
Diffstat (limited to 'intern/cycles/graph')
-rw-r--r--intern/cycles/graph/node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/graph/node.h b/intern/cycles/graph/node.h
index 226c49b387a..d35a1bb489c 100644
--- a/intern/cycles/graph/node.h
+++ b/intern/cycles/graph/node.h
@@ -33,7 +33,7 @@ struct Transform;
struct Node {
explicit Node(const NodeType *type, ustring name = ustring());
- virtual ~Node();
+ virtual ~Node() = 0;
/* set values */
void set(const SocketType &input, bool value);