fix unsed variables in writers

This commit is contained in:
Max Lyon
2019-12-09 11:15:09 +01:00
parent 15965f6b81
commit ee752ce996
2 changed files with 0 additions and 5 deletions

View File

@@ -206,7 +206,6 @@ _OBJWriter_::
write(std::ostream& _out, BaseExporter& _be, Options _opt, std::streamsize _precision) const write(std::ostream& _out, BaseExporter& _be, Options _opt, std::streamsize _precision) const
{ {
unsigned int idx; unsigned int idx;
size_t nV, nF;
Vec3f v, n; Vec3f v, n;
Vec2f t; Vec2f t;
VertexHandle vh; VertexHandle vh;

View File

@@ -40,11 +40,7 @@ bool _VTKWriter_::write(const std::string& _filename, BaseExporter& _be, Options
bool _VTKWriter_::write(std::ostream& _out, BaseExporter& _be, Options _opt, std::streamsize _precision) const bool _VTKWriter_::write(std::ostream& _out, BaseExporter& _be, Options _opt, std::streamsize _precision) const
{ {
Vec3f n;
Vec2f t;
VertexHandle vh; VertexHandle vh;
OpenMesh::Vec3f c;
OpenMesh::Vec4f cA;
// check exporter features // check exporter features
if (!check(_be, _opt)) { if (!check(_be, _opt)) {