Remove useless commented pieces of code

This commit is contained in:
Simon Giraudot 2017-07-04 08:36:25 +02:00
parent d878561809
commit 1317c5f847
1 changed files with 0 additions and 3 deletions

View File

@ -145,7 +145,6 @@ private:
// Map TDS facets to shells // Map TDS facets to shells
Map_facet_to_shell _map_f2s; Map_facet_to_shell _map_f2s;
// std::map<SFacet, unsigned int> _map_f2s;
unsigned int _index; unsigned int _index;
std::vector<Bubble> _bubbles; std::vector<Bubble> _bubbles;
@ -232,11 +231,9 @@ public:
for (Facet_iterator it = _surface.begin(); it != _surface.end(); ++ it) for (Facet_iterator it = _surface.begin(); it != _surface.end(); ++ it)
{ {
// Facet t = *it;
cpp11::array<std::size_t, 3> f = {{ std::size_t((*it)[0]), std::size_t((*it)[1]), std::size_t((*it)[2]) }}; cpp11::array<std::size_t, 3> f = {{ std::size_t((*it)[0]), std::size_t((*it)[1]), std::size_t((*it)[2]) }};
*(output ++) = f; *(output ++) = f;
} }
// std::copy (_surface.begin(), _surface.end(), output);
} }
/// \endcond /// \endcond