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

fix compile

parent 2a5e1344
No related branches found
No related tags found
No related merge requests found
......@@ -30,13 +30,13 @@
#include "GmshMessage.h"
#include "linearSystem.h"
#include "Options.h"
#include "elasticitySolver.h"
#if defined(HAVE_OPENGL)
#include "drawContext.h"
#endif
#if defined(HAVE_SOLVER)
#include "elasticitySolver.h"
#include "linearSystemCSR.h"
#endif
......
......@@ -104,10 +104,12 @@ void elasticitySolver::readInputFile(const std::string &fn)
while(!feof(f)){
if(fscanf(f, "%s", what) != 1) return;
if(what[0]=='#'){
/*
char *line=NULL;
size_t l = 0;
int r = getline(&line,&l,f);
free(line);
*/
}
else if (!strcmp(what, "ElasticDomain")){
elasticField field;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment