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