summaryrefslogtreecommitdiffstats
path: root/src/render/materialsystem
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/render/materialsystem
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/render/materialsystem')
-rw-r--r--src/render/materialsystem/shader_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/materialsystem/shader_p.h b/src/render/materialsystem/shader_p.h
index fe1a401d9..1c9731e50 100644
--- a/src/render/materialsystem/shader_p.h
+++ b/src/render/materialsystem/shader_p.h
@@ -176,7 +176,7 @@ private:
inline QDebug operator<<(QDebug dbg, const Shader &shader)
{
QDebugStateSaver saver(dbg);
- dbg << "QNodeId =" << shader.peerId() << "dna =" << shader.dna() << endl;
+ dbg << "QNodeId =" << shader.peerId() << "dna =" << shader.dna() << Qt::endl;
return dbg;
}
#endif