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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-08-21 14:32:15 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-08-21 14:32:15 +0400
commitf7b9c85871ad4e68dbd578556f3ae8ef55d6dc98 (patch)
treece40e3888cd02d57855598776e6cbd69924161dc /intern/cycles/render/graph.h
parentc7fce6be2ea6dcc1ecdf52a8f5d1608d45117e8f (diff)
Cycles: fix some invalid memory access problems found by running the windows build in debug 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();