From eee7bcbc14a6546c9358ee7b930cceb1a016f6d5 Mon Sep 17 00:00:00 2001 From: Erwin Coumans Date: Sat, 11 Jan 2020 13:16:12 -0800 Subject: [PATCH] remove debug/profile tag --- examples/ThirdPartyLibs/BussIK/MatrixRmn.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/ThirdPartyLibs/BussIK/MatrixRmn.cpp b/examples/ThirdPartyLibs/BussIK/MatrixRmn.cpp index c1c20cc83..5a864d318 100644 --- a/examples/ThirdPartyLibs/BussIK/MatrixRmn.cpp +++ b/examples/ThirdPartyLibs/BussIK/MatrixRmn.cpp @@ -355,7 +355,6 @@ MatrixRmn& MatrixRmn::MultiplyTranspose(const MatrixRmn& A, const MatrixRmn& B, // No error checking for divide by zero or instability (except with asserts) void MatrixRmn::Solve(const VectorRn& b, VectorRn* xVec, MatrixRmn& AugMat) const { - B3_PROFILE("MatrixRmn::Solve"); assert(NumRows == NumCols && NumCols == xVec->GetLength() && NumRows == b.GetLength()); // Copy this matrix and b into an Augmented Matrix