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.cpp
parentbf030decd42fd9eb35f59a5b724d87403917bc6a (diff)
Cleanup: Remove using statements.
Diffstat (limited to 'source/blender/compositor/intern/COM_ExecutionSystem.cpp')
-rw-r--r--source/blender/compositor/intern/COM_ExecutionSystem.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/compositor/intern/COM_ExecutionSystem.cpp b/source/blender/compositor/intern/COM_ExecutionSystem.cpp
index 4c0c7d2103e..6fbcd4259c9 100644
--- a/source/blender/compositor/intern/COM_ExecutionSystem.cpp
+++ b/source/blender/compositor/intern/COM_ExecutionSystem.cpp
@@ -135,7 +135,7 @@ void ExecutionSystem::execute()
DebugInfo::execute_started(this);
unsigned int order = 0;
- for (vector<NodeOperation *>::iterator iter = this->m_operations.begin();
+ for (std::vector<NodeOperation *>::iterator iter = this->m_operations.begin();
iter != this->m_operations.end();
++iter) {
NodeOperation *operation = *iter;
@@ -202,7 +202,7 @@ void ExecutionSystem::execute()
void ExecutionSystem::executeGroups(CompositorPriority priority)
{
unsigned int index;
- vector<ExecutionGroup *> executionGroups;
+ std::vector<ExecutionGroup *> executionGroups;
this->findOutputExecutionGroup(&executionGroups, priority);
for (index = 0; index < executionGroups.size(); index++) {
@@ -211,7 +211,7 @@ void ExecutionSystem::executeGroups(CompositorPriority priority)
}
}
-void ExecutionSystem::findOutputExecutionGroup(vector<ExecutionGroup *> *result,
+void ExecutionSystem::findOutputExecutionGroup(std::vector<ExecutionGroup *> *result,
CompositorPriority priority) const
{
unsigned int index;
@@ -223,7 +223,7 @@ void ExecutionSystem::findOutputExecutionGroup(vector<ExecutionGroup *> *result,
}
}
-void ExecutionSystem::findOutputExecutionGroup(vector<ExecutionGroup *> *result) const
+void ExecutionSystem::findOutputExecutionGroup(std::vector<ExecutionGroup *> *result) const
{
unsigned int index;
for (index = 0; index < this->m_groups.size(); index++) {