Quellcode durchsuchen

Removed stray ;

Jorrit Rouwe vor 3 Jahren
Ursprung
Commit
17e09d7156
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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();