From 2230ffec5410962d0a0208be93312cce1a76264c Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Thu, 21 Feb 2008 12:47:37 +0000 Subject: [PATCH] *** empty log message *** --- Common/GmshMatrix.h | 2 +- Geo/MElement.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Common/GmshMatrix.h b/Common/GmshMatrix.h index 8e87a6fc99..1facbedcea 100644 --- a/Common/GmshMatrix.h +++ b/Common/GmshMatrix.h @@ -192,7 +192,7 @@ public: gsl_matrix *data; GSL_Matrix(gsl_matrix_view _data) : view(_data), data(&view.matrix) {} GSL_Matrix(size_t R, size_t C) { data = gsl_matrix_calloc(R, C); } - GSL_Matrix() : r(0), c(0), data(0) {} + GSL_Matrix() : data(0) {} GSL_Matrix(const GSL_Matrix &other) : data(0) { if(data) gsl_matrix_free(data); diff --git a/Geo/MElement.cpp b/Geo/MElement.cpp index 56f00755ff..da12240aa2 100644 --- a/Geo/MElement.cpp +++ b/Geo/MElement.cpp @@ -1,4 +1,4 @@ -// $Id: MElement.cpp,v 1.54 2008-02-21 12:11:12 geuzaine Exp $ +// $Id: MElement.cpp,v 1.55 2008-02-21 12:47:37 geuzaine Exp $ // // Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle // @@ -646,7 +646,7 @@ void MTriangle::circumcenterXY(double *res) const void MTriangle::jac(int ord, MVertex *vs[], double uu, double vv, double j[2][3]) { #if defined(HAVE_GMSH_EMBEDDED) - return -1.; + return; #else double grads[256][2]; int nf = getNumFaceVertices(); -- GitLab