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>2016-10-24 13:31:11 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-10-24 13:31:11 +0300
commit80a6e5beb5be532916513025303025f961028c8d (patch)
treef1073b88efe02c1f7d6f89f25e75517f8f542972 /intern/cycles/graph/node_type.h
parent48997d2e40a74a83fb9edfb9de0999139392f634 (diff)
Cycles: Remove explicit std:: from types where possible
We have our own abstraction level on top of the STL's implementation. This commit will guarantee our tweaks are used for all cases.
Diffstat (limited to 'intern/cycles/graph/node_type.h')
-rw-r--r--intern/cycles/graph/node_type.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/graph/node_type.h b/intern/cycles/graph/node_type.h
index 60c3244028d..e89bb5b3c1f 100644
--- a/intern/cycles/graph/node_type.h
+++ b/intern/cycles/graph/node_type.h
@@ -125,8 +125,8 @@ struct NodeType
ustring name;
Type type;
- std::vector<SocketType> inputs;
- std::vector<SocketType> outputs;
+ vector<SocketType> inputs;
+ vector<SocketType> outputs;
CreateFunc create;
static NodeType *add(const char *name, CreateFunc create, Type type = NONE);