Skip to content
Snippets Groups Projects
Commit b12a91f3 authored by Thomas Toulorge's avatar Thomas Toulorge
Browse files

Fixed compliance to C++98 standard in MeshOptObjContrib

parent 46507bf4
Branches
Tags
No related merge requests found
......@@ -3,6 +3,9 @@
#include "MeshOptObjContrib.h"
const double ObjContrib::BIGVAL = 1.e300;
ObjContrib::ObjContrib(std::string mesName, std::string name) :
_min(0.), _max(0.), _measureName(mesName), _name(name)
{
......
......@@ -30,7 +30,7 @@ public:
virtual void updateResults(MeshOptResults &res) const = 0;
protected:
static const double BIGVAL = 1.e300;
static const double BIGVAL;
std::string _measureName, _name;
double _min, _max;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment