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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-12-11 14:17:26 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-12-11 17:50:02 +0300
commit66d8bfb85c61aafe3bad2edf0e7b4d9d694ee2e7 (patch)
tree97653b0aa4c87ca5349284405f12323d3c59c04e /intern/cycles/graph
parent84b02dc54a8c06e963a263e7232e41a993ab21c8 (diff)
Update code to be compatible with OIIO 2.0
There are some changes in API of OpenImageIO, but those are quite simple to keep working with older and newer library versions. Reviewers: brecht Reviewed By: brecht Differential Revision: https://developer.blender.org/D4064
Diffstat (limited to 'intern/cycles/graph')
-rw-r--r--intern/cycles/graph/node_xml.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/graph/node_xml.cpp b/intern/cycles/graph/node_xml.cpp
index b7a28b427e5..f228da282e9 100644
--- a/intern/cycles/graph/node_xml.cpp
+++ b/intern/cycles/graph/node_xml.cpp
@@ -250,7 +250,7 @@ void xml_read_node(XMLReader& reader, Node *node, xml_node xml_node)
}
}
- if(node->name)
+ if(!node->name.empty())
reader.node_map[node->name] = node;
}