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:
Diffstat (limited to 'intern/cycles/render/graph.h')
-rw-r--r--intern/cycles/render/graph.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/intern/cycles/render/graph.h b/intern/cycles/render/graph.h
index c73dd77d5df..a79a68da358 100644
--- a/intern/cycles/render/graph.h
+++ b/intern/cycles/render/graph.h
@@ -21,6 +21,7 @@
#include "kernel_types.h"
+#include "util_list.h"
#include "util_map.h"
#include "util_param.h"
#include "util_set.h"
@@ -193,7 +194,7 @@ public:
class ShaderGraph {
public:
- vector<ShaderNode*> nodes;
+ list<ShaderNode*> nodes;
bool finalized;
ShaderGraph();