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-11-09 13:54:24 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-11-09 13:54:24 +0300
commitc86d4b1d804eb9284eee1c796080196e7a48b3f8 (patch)
treed4f5d593d361e5d962f77dfe6399e47c3e54a362 /intern/cycles/graph
parentb394e05118c02b9476c6bbc88d208cc0bc075c1d (diff)
Cycles: Cleanup, split array from vector
Those are similar but different types, no reason to keep their definitions in a single file.
Diffstat (limited to 'intern/cycles/graph')
-rw-r--r--intern/cycles/graph/node.h2
-rw-r--r--intern/cycles/graph/node_type.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/graph/node.h b/intern/cycles/graph/node.h
index 11695a8631d..d50a3786139 100644
--- a/intern/cycles/graph/node.h
+++ b/intern/cycles/graph/node.h
@@ -18,9 +18,9 @@
#include "graph/node_type.h"
+#include "util/util_array.h"
#include "util/util_map.h"
#include "util/util_param.h"
-#include "util/util_vector.h"
CCL_NAMESPACE_BEGIN
diff --git a/intern/cycles/graph/node_type.h b/intern/cycles/graph/node_type.h
index 1d565794b27..7d6abae2314 100644
--- a/intern/cycles/graph/node_type.h
+++ b/intern/cycles/graph/node_type.h
@@ -17,7 +17,7 @@
#pragma once
#include "graph/node_enum.h"
-
+#include "util/util_array.h"
#include "util/util_map.h"
#include "util/util_param.h"
#include "util/util_string.h"