From 65d6ade6f35588edc792c977c39108e0dd56dede Mon Sep 17 00:00:00 2001 From: Lubosz Sarnecki Date: Tue, 31 Mar 2020 18:08:53 +0200 Subject: [PATCH] d/ns: Remove redundant semicolons. As found by C++ pedantic warnings. --- .../drivers/north_star/distortion/deformation_northstar.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xrt/drivers/north_star/distortion/deformation_northstar.cpp b/src/xrt/drivers/north_star/distortion/deformation_northstar.cpp index e7cf0257a..eea6bd110 100644 --- a/src/xrt/drivers/north_star/distortion/deformation_northstar.cpp +++ b/src/xrt/drivers/north_star/distortion/deformation_northstar.cpp @@ -17,7 +17,7 @@ OpticalSystem::OpticalSystem(const OpticalSystem &_in) worldToScreenSpace = _in.worldToScreenSpace; clipToWorld = _in.clipToWorld; cameraProjection = _in.cameraProjection; -}; +} void OpticalSystem::LoadOpticalData(struct ns_eye *eye) @@ -80,7 +80,7 @@ OpticalSystem::LoadOpticalData(struct ns_eye *eye) worldToSphereSpace = sphereToWorldSpace.Inverse(); UpdateClipToWorld(Matrix4x4::Identity()); -}; +} void OpticalSystem::RegenerateMesh()