From bdd59732e1b6b848f5ef39da9c98c5bae198ad4b Mon Sep 17 00:00:00 2001 From: tiankaima Date: Sat, 21 Oct 2023 16:22:12 +0800 Subject: [PATCH] feat: remove tag [[maybe_unused]] --- CustomMath_lib/GaussMethod.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CustomMath_lib/GaussMethod.h b/CustomMath_lib/GaussMethod.h index defc875..9961602 100644 --- a/CustomMath_lib/GaussMethod.h +++ b/CustomMath_lib/GaussMethod.h @@ -13,17 +13,17 @@ // 1.1.1 Array LowerGaussSolve(const Matrix &A, const Array &b); -[[maybe_unused]] void LowerGaussSolve_T(const Matrix &A, Array &b); +void LowerGaussSolve_T(const Matrix &A, Array &b); // 1.1.2 Array UpperGaussSolve(const Matrix &A, const Array &b); -[[maybe_unused]] void UpperGaussSolve_T(const Matrix &A, Array &b); +void UpperGaussSolve_T(const Matrix &A, Array &b); // 1.1.3 Array LU_Solve(const Matrix &A, const Array &b); -[[maybe_unused]] void LU_Solve_T(Matrix *A, Array &b); +void LU_Solve_T(Matrix *A, Array &b); void LU_Factorization(const Matrix &A, Matrix *L, Matrix *U);