From 80a6e5beb5be532916513025303025f961028c8d Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Mon, 24 Oct 2016 12:31:11 +0200 Subject: 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. --- intern/cycles/graph/node_type.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern/cycles/graph') 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 inputs; - std::vector outputs; + vector inputs; + vector outputs; CreateFunc create; static NodeType *add(const char *name, CreateFunc create, Type type = NONE); -- cgit v1.2.3