summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-07-11 10:32:13 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-12-06 09:05:42 +0100
commit9f3ebe697d09dca60fb870f128e26623f9f2a931 (patch)
tree633ae10499eb7a7278ff0448dd0078584853641a /src/core
parent037a549902dee87fe6ccb50995351f37543fec98 (diff)
Fix usages of text stream operators
Change-Id: I8f3fe9475749f10f33c8eb750befa8845ccc37d6 (cherry picked from commit 58db7d01e0d424fdf46baa70e2e41b8009429c78) Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'src/core')
-rw-r--r--src/core/resources/qresourcemanager_p.h8
-rw-r--r--src/core/transforms/matrix4x4_avx2.cpp10
-rw-r--r--src/core/transforms/matrix4x4_sse.cpp10
3 files changed, 14 insertions, 14 deletions
diff --git a/src/core/resources/qresourcemanager_p.h b/src/core/resources/qresourcemanager_p.h
index b3837fb1f..ba39695a4 100644
--- a/src/core/resources/qresourcemanager_p.h
+++ b/src/core/resources/qresourcemanager_p.h
@@ -476,14 +476,14 @@ template <typename ValueType, typename KeyType,
QDebug operator<<(QDebug dbg, const QResourceManager<ValueType, KeyType, LockingPolicy> &manager)
{
QDebugStateSaver saver(dbg);
- dbg << "Contains" << manager.count() << "items" << endl;
+ dbg << "Contains" << manager.count() << "items" << Qt::endl;
- dbg << "Key to Handle Map:" << endl;
+ dbg << "Key to Handle Map:" << Qt::endl;
const auto end = manager.m_keyToHandleMap.cend();
for (auto it = manager.m_keyToHandleMap.cbegin(); it != end; ++it)
- dbg << "QNodeId =" << it.key() << "Handle =" << it.value() << endl;
+ dbg << "QNodeId =" << it.key() << "Handle =" << it.value() << Qt::endl;
-// dbg << "Resources:" << endl;
+// dbg << "Resources:" << Qt::endl;
// dbg << manager.m_handleManager;
return dbg;
}
diff --git a/src/core/transforms/matrix4x4_avx2.cpp b/src/core/transforms/matrix4x4_avx2.cpp
index 556e778d0..a06a59a99 100644
--- a/src/core/transforms/matrix4x4_avx2.cpp
+++ b/src/core/transforms/matrix4x4_avx2.cpp
@@ -47,12 +47,12 @@ namespace Qt3DCore {
QDebug operator<<(QDebug dbg, const Matrix4x4_AVX2 &m)
{
- dbg.nospace() << "Matrix4x4_AVX2(" << endl
+ dbg.nospace() << "Matrix4x4_AVX2(" << Qt::endl
<< qSetFieldWidth(10)
- << m.m11() << m.m12() << m.m13() << m.m14() << endl
- << m.m21() << m.m22() << m.m23() << m.m24() << endl
- << m.m31() << m.m32() << m.m33() << m.m34() << endl
- << m.m41() << m.m42() << m.m43() << m.m44() << endl
+ << m.m11() << m.m12() << m.m13() << m.m14() << Qt::endl
+ << m.m21() << m.m22() << m.m23() << m.m24() << Qt::endl
+ << m.m31() << m.m32() << m.m33() << m.m34() << Qt::endl
+ << m.m41() << m.m42() << m.m43() << m.m44() << Qt::endl
<< qSetFieldWidth(0) << ')';
return dbg;
}
diff --git a/src/core/transforms/matrix4x4_sse.cpp b/src/core/transforms/matrix4x4_sse.cpp
index d35cc2e35..bc8c57b9d 100644
--- a/src/core/transforms/matrix4x4_sse.cpp
+++ b/src/core/transforms/matrix4x4_sse.cpp
@@ -47,12 +47,12 @@ namespace Qt3DCore {
QDebug operator<<(QDebug dbg, const Matrix4x4_SSE &m)
{
- dbg.nospace() << "Matrix4x4_SSE(" << endl
+ dbg.nospace() << "Matrix4x4_SSE(" << Qt::endl
<< qSetFieldWidth(10)
- << m.m11() << m.m12() << m.m13() << m.m14() << endl
- << m.m21() << m.m22() << m.m23() << m.m24() << endl
- << m.m31() << m.m32() << m.m33() << m.m34() << endl
- << m.m41() << m.m42() << m.m43() << m.m44() << endl
+ << m.m11() << m.m12() << m.m13() << m.m14() << Qt::endl
+ << m.m21() << m.m22() << m.m23() << m.m24() << Qt::endl
+ << m.m31() << m.m32() << m.m33() << m.m34() << Qt::endl
+ << m.m41() << m.m42() << m.m43() << m.m44() << Qt::endl
<< qSetFieldWidth(0) << ')';
return dbg;
}