[Bf-blender-cvs] [ee2bed79474] master: Fix undefined symbols for ccl::Node with some compilers and build options

Alex Fuller noreply at git.blender.org
Tue Aug 27 12:50:36 CEST 2019


Commit: ee2bed7947413eb9175e59608eb8c8ac0e82b594
Author: Alex Fuller
Date:   Tue Aug 27 12:33:09 2019 +0200
Branches: master
https://developer.blender.org/rBee2bed7947413eb9175e59608eb8c8ac0e82b594

Fix undefined symbols for ccl::Node with some compilers and build options

Differential Revision: https://developer.blender.org/D5590

===================================================================

M	intern/cycles/graph/node.h

===================================================================

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);



More information about the Bf-blender-cvs mailing list