From e46524f0974824b03c4f146cf792d93231954626 Mon Sep 17 00:00:00 2001 From: Ruth Sabariego <ruth.sabariego@esat.kuleuven.be> Date: Thu, 13 Nov 2008 10:33:29 +0000 Subject: [PATCH] error compilation: function arguments must be different --- Numeric/gmshElasticity.cpp | 2 +- Numeric/gmshLaplace.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Numeric/gmshElasticity.cpp b/Numeric/gmshElasticity.cpp index bbb1df7005..eed442a04c 100644 --- a/Numeric/gmshElasticity.cpp +++ b/Numeric/gmshElasticity.cpp @@ -1,6 +1,6 @@ #include "gmshElasticity.h" -extern double inv3x3 (double a[3][3], double a[3][3]); +extern double inv3x3 (double a[3][3], double b[3][3]); void gmshElasticityTerm::elementMatrix(MElement *e, Double_Matrix & m) const { diff --git a/Numeric/gmshLaplace.cpp b/Numeric/gmshLaplace.cpp index 694bb65fa9..d036940c50 100644 --- a/Numeric/gmshLaplace.cpp +++ b/Numeric/gmshLaplace.cpp @@ -1,6 +1,6 @@ #include "gmshLaplace.h" -extern double inv3x3 (double a[3][3], double a[3][3]); +extern double inv3x3 (double a[3][3], double b[3][3]); void gmshLaplaceTerm::elementMatrix(MElement *e, Double_Matrix & m) const { -- GitLab