d/ns: Remove redundant semicolons.

As found by C++ pedantic warnings.
This commit is contained in:
Lubosz Sarnecki 2020-03-31 18:08:53 +02:00
parent 79b739d51a
commit 65d6ade6f3

View file

@ -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()