summaryrefslogtreecommitdiffstats
path: root/src/core/geometry/buffervisitor_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/geometry/buffervisitor_p.h')
-rw-r--r--src/core/geometry/buffervisitor_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/geometry/buffervisitor_p.h b/src/core/geometry/buffervisitor_p.h
index 69cfb9b50..b1166555b 100644
--- a/src/core/geometry/buffervisitor_p.h
+++ b/src/core/geometry/buffervisitor_p.h
@@ -69,16 +69,16 @@ public:
virtual ~BufferVisitor() = default;
virtual void visit(uint ndx, ValueType x) {
- Q_UNUSED(ndx) Q_UNUSED(x)
+ Q_UNUSED(ndx); Q_UNUSED(x);
}
virtual void visit(uint ndx, ValueType x, ValueType y) {
- Q_UNUSED(ndx) Q_UNUSED(x) Q_UNUSED(y)
+ Q_UNUSED(ndx); Q_UNUSED(x); Q_UNUSED(y);
}
virtual void visit(uint ndx, ValueType x, ValueType y, ValueType z) {
- Q_UNUSED(ndx) Q_UNUSED(x) Q_UNUSED(y) Q_UNUSED(z)
+ Q_UNUSED(ndx); Q_UNUSED(x); Q_UNUSED(y); Q_UNUSED(z);
}
virtual void visit(uint ndx, ValueType x, ValueType y, ValueType z, ValueType w) {
- Q_UNUSED(ndx) Q_UNUSED(x) Q_UNUSED(y) Q_UNUSED(z) Q_UNUSED(w)
+ Q_UNUSED(ndx); Q_UNUSED(x); Q_UNUSED(y); Q_UNUSED(z); Q_UNUSED(w);
}
bool apply(QAttribute *attribute,