summaryrefslogtreecommitdiffstats
path: root/src/plugins/renderers/rhi/renderer/commandexecuter_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/renderers/rhi/renderer/commandexecuter_p.h')
-rw-r--r--src/plugins/renderers/rhi/renderer/commandexecuter_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/renderers/rhi/renderer/commandexecuter_p.h b/src/plugins/renderers/rhi/renderer/commandexecuter_p.h
index 924930a49..74f83c082 100644
--- a/src/plugins/renderers/rhi/renderer/commandexecuter_p.h
+++ b/src/plugins/renderers/rhi/renderer/commandexecuter_p.h
@@ -49,7 +49,7 @@
// We mean it.
//
-#include <QVector>
+#include <vector>
#include <QVariant>
#include <QMutex>
@@ -79,13 +79,13 @@ class CommandExecuter
public:
explicit CommandExecuter(Render::Rhi::Renderer *renderer);
- void performAsynchronousCommandExecution(const QVector<Render::Rhi::RenderView *> &views);
+ void performAsynchronousCommandExecution(const std::vector<Render::Rhi::RenderView *> &views);
QVariant executeCommand(const QStringList &args);
private:
Render::Rhi::Renderer *m_renderer;
- QVector<Qt3DCore::Debug::AsynchronousCommandReply *> m_pendingCommands;
+ std::vector<Qt3DCore::Debug::AsynchronousCommandReply *> m_pendingCommands;
QMutex m_pendingCommandsMutex;
};