From 18cfabafa615e42c4af092edca5bb35eced4de5e Mon Sep 17 00:00:00 2001 From: Lars Schmertmann Date: Thu, 2 Jul 2020 16:01:20 +0200 Subject: Remove unnecessary ; after function implementations Task-number: QTBUG-82978 Change-Id: Iea3bcaec1ef9f4bd0f73e5dccca33354650f5bf4 Reviewed-by: Edward Welbourne --- src/opengl/qopengl2pexvertexarray_p.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/opengl/qopengl2pexvertexarray_p.h') diff --git a/src/opengl/qopengl2pexvertexarray_p.h b/src/opengl/qopengl2pexvertexarray_p.h index 3ef26e908d..ac9a5732db 100644 --- a/src/opengl/qopengl2pexvertexarray_p.h +++ b/src/opengl/qopengl2pexvertexarray_p.h @@ -63,13 +63,13 @@ class QOpenGLPoint { public: QOpenGLPoint(GLfloat new_x, GLfloat new_y) : - x(new_x), y(new_y) {}; + x(new_x), y(new_y) {} QOpenGLPoint(const QPointF &p) : - x(p.x()), y(p.y()) {}; + x(p.x()), y(p.y()) {} QOpenGLPoint(const QPointF* p) : - x(p->x()), y(p->y()) {}; + x(p->x()), y(p->y()) {} GLfloat x; GLfloat y; -- cgit v1.2.3