From 27e4ce0cf6540625bea78b23e98dfadbe19b8e63 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Sun, 22 May 2016 19:42:45 +0200 Subject: Fix Cycles warning in release builds. --- intern/cycles/graph/node.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'intern/cycles/graph') diff --git a/intern/cycles/graph/node.cpp b/intern/cycles/graph/node.cpp index d9a6bde4fcd..d482577b73b 100644 --- a/intern/cycles/graph/node.cpp +++ b/intern/cycles/graph/node.cpp @@ -55,6 +55,7 @@ static T& get_socket_value(const Node *node, const SocketType& socket) return (T&)*(((char*)node) + socket.struct_offset); } +#ifndef NDEBUG static bool is_socket_float3(const SocketType& socket) { return socket.type == SocketType::COLOR || @@ -70,6 +71,7 @@ static bool is_socket_array_float3(const SocketType& socket) socket.type == SocketType::VECTOR_ARRAY || socket.type == SocketType::NORMAL_ARRAY; } +#endif /* set values */ void Node::set(const SocketType& input, bool value) -- cgit v1.2.3