aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/tools/buildgraphlocker.h
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@qt.io>2017-05-09 17:27:04 -0700
committerJake Petroules <jake.petroules@qt.io>2017-05-10 16:19:41 +0000
commit646d06b0bc180aea282750a60c05f8f603ba50e2 (patch)
tree25f922c7c75a5ed05874431bb8d9b9aeb2c55f9b /src/lib/corelib/tools/buildgraphlocker.h
parent7c163caf130d221345e367f7596ad49526eed7e9 (diff)
Replace QQueue with std::queue
Change-Id: I97025241845a40128f94046d2715b166ddda392c Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/lib/corelib/tools/buildgraphlocker.h')
-rw-r--r--src/lib/corelib/tools/buildgraphlocker.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/corelib/tools/buildgraphlocker.h b/src/lib/corelib/tools/buildgraphlocker.h
index 390ccfa98..b73ff7237 100644
--- a/src/lib/corelib/tools/buildgraphlocker.h
+++ b/src/lib/corelib/tools/buildgraphlocker.h
@@ -43,9 +43,10 @@
#include <logging/logger.h>
#include <QtCore/qlockfile.h>
-#include <QtCore/qqueue.h>
#include <QtCore/qstring.h>
+#include <queue>
+
namespace qbs {
namespace Internal {
@@ -64,7 +65,7 @@ private:
QLockFile m_lockFile;
Logger m_logger;
- QQueue<QString> m_createdParentDirs;
+ std::queue<QString> m_createdParentDirs;
};
} // namespace Internal