Bladeren bron

Removed stray ;

Jorrit Rouwe 4 jaren geleden
bovenliggende
commit
17e09d7156
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1 1
      Jolt/Math/GaussianElimination.h

+ 1 - 1
Jolt/Math/GaussianElimination.h

@@ -17,7 +17,7 @@ namespace JPH {
 template <class MatrixA, class MatrixB>
 bool GaussianElimination(MatrixA &ioA, MatrixB &ioB, float inTolerance = 1.0e-16f)
 {
-	// Get problem dimensions;
+	// Get problem dimensions
 	const uint n = ioA.GetCols();
 	const uint m = ioB.GetCols();