From ba899b371dc96b378944fe06900c75e9d9358a3e Mon Sep 17 00:00:00 2001 From: erwincoumans Date: Thu, 2 May 2019 16:18:29 -0700 Subject: [PATCH] Make btMatrixX::printMatrix const --- src/LinearMath/btMatrixX.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LinearMath/btMatrixX.h b/src/LinearMath/btMatrixX.h index 0fa8cd0d3..388c57c2d 100644 --- a/src/LinearMath/btMatrixX.h +++ b/src/LinearMath/btMatrixX.h @@ -284,7 +284,7 @@ struct btMatrixX } } - void printMatrix(const char* msg) + void printMatrix(const char* msg) const { printf("%s ---------------------\n", msg); for (int i = 0; i < rows(); i++)