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:
authorJeroen Bakker <jeroen@blender.org>2021-03-05 16:15:43 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-05 18:56:14 +0300
commit3d3a5bb89240ef160d2a63da85eae937eb578e53 (patch)
tree4c0262c627fe01dd3a47d40fcada4776f54e2c10 /source/blender/compositor/intern/COM_ExecutionSystem.h
parentbf030decd42fd9eb35f59a5b724d87403917bc6a (diff)
Cleanup: Remove using statements.
Diffstat (limited to 'source/blender/compositor/intern/COM_ExecutionSystem.h')
-rw-r--r--source/blender/compositor/intern/COM_ExecutionSystem.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/intern/COM_ExecutionSystem.h b/source/blender/compositor/intern/COM_ExecutionSystem.h
index d03f9b86bb6..d18125ebc50 100644
--- a/source/blender/compositor/intern/COM_ExecutionSystem.h
+++ b/source/blender/compositor/intern/COM_ExecutionSystem.h
@@ -137,13 +137,13 @@ class ExecutionSystem {
/**
* find all execution group with output nodes
*/
- void findOutputExecutionGroup(vector<ExecutionGroup *> *result,
+ void findOutputExecutionGroup(std::vector<ExecutionGroup *> *result,
CompositorPriority priority) const;
/**
* find all execution group with output nodes
*/
- void findOutputExecutionGroup(vector<ExecutionGroup *> *result) const;
+ void findOutputExecutionGroup(std::vector<ExecutionGroup *> *result) const;
public:
/**