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

fix msvc compile

parent 517cacfa
No related branches found
No related tags found
No related merge requests found
#ifndef _gLEVELSET_H_
#define _gLEVELSET_H_
#include <cmath>
#include <math.h>
#include <vector>
#include <stdio.h>
......@@ -79,7 +79,7 @@ public:
gLevelsetPrimitive(int &tag) {
if (tag < 1) {
printf("Tag of the levelset (%d) must be greater than 0.\n", tag);
tag = std::fabs(tag);
tag = fabs(tag);
}
tag_ = tag++;
}
......
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