double -> FT

This commit is contained in:
Sébastien Loriot 2016-06-29 08:45:36 +02:00
parent 174b1c3c7d
commit d00bc1c7a9
1 changed files with 3 additions and 3 deletions

View File

@ -140,7 +140,7 @@ public:
> >
> MultiIndex; > MultiIndex;
double m_factor; // ghost vs solid FT m_factor; // ghost vs solid
public: public:
@ -152,11 +152,11 @@ public:
~Reconstruction_triangulation_2() { ~Reconstruction_triangulation_2() {
} }
double& ghost_factor() { FT& ghost_factor() {
return m_factor; return m_factor;
} }
double ghost_factor() const { FT ghost_factor() const {
return m_factor; return m_factor;
} }