From ee2bed7947413eb9175e59608eb8c8ac0e82b594 Mon Sep 17 00:00:00 2001 From: Alex Fuller Date: Tue, 27 Aug 2019 12:33:09 +0200 Subject: Fix undefined symbols for ccl::Node with some compilers and build options Differential Revision: https://developer.blender.org/D5590 --- intern/cycles/graph/node.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'intern/cycles/graph') 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); -- cgit v1.2.3