Skip to content
Snippets Groups Projects
Commit b31fc2f0 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix compile

parent 340f2d16
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ namespace gsolver { ...@@ -32,7 +32,7 @@ namespace gsolver {
virtual Dof getLocalDofR(MElement *e, int iRow) const = 0; virtual Dof getLocalDofR(MElement *e, int iRow) const = 0;
// default behavior : symmetric // default behavior : symmetric
virtual Dof getLocalDofC(MElement *e, int iCol) const virtual Dof getLocalDofC(MElement *e, int iCol) const
{getLocalDofR(e, iCol);} { return getLocalDofR(e, iCol); }
public: public:
femTerm(GModel *gm) : _gm(gm) {} femTerm(GModel *gm) : _gm(gm) {}
virtual ~femTerm (){} virtual ~femTerm (){}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment