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

re-add return statements in functions returning non-void. JF: my compiler
wants this (and he's right)
parent 6e833573
No related branches found
No related tags found
No related merge requests found
......@@ -115,8 +115,8 @@ public:
virtual void receiveNewPhysicalGroup (int dim, int id) = 0;// add the given group to the solver data's
virtual void readSolverFile ( const char * ) = 0; // load the solver input file related to the gmsh geo file
virtual void writeSolverFile ( const char *) const = 0; // save the solver file
virtual bool GL_enhancePoint ( Vertex *v) {}; // enhance graphics for a giver geo point
virtual bool GL_enhanceLine ( int CurveId , Vertex *v1, Vertex *v2) {}; // enhance graphics for a giver geo line
virtual bool GL_enhancePoint ( Vertex *v) { return false; }; // enhance graphics for a giver geo point
virtual bool GL_enhanceLine ( int CurveId , Vertex *v1, Vertex *v2) { return false; }; // enhance graphics for a giver geo line
};
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment