From 2a903f8d05a2041dda425e60d149c37fc2c9fd7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Guennebaud?= Date: Tue, 20 Sep 2011 09:24:55 +0000 Subject: [PATCH] fix compilation --- Polyhedron/demo/Polyhedron/Polyhedron_type.h | 6 ++++++ .../include/CGAL/Taucs_solver_traits.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Polyhedron/demo/Polyhedron/Polyhedron_type.h b/Polyhedron/demo/Polyhedron/Polyhedron_type.h index b366bc3e266..fdf465224e1 100644 --- a/Polyhedron/demo/Polyhedron/Polyhedron_type.h +++ b/Polyhedron/demo/Polyhedron/Polyhedron_type.h @@ -154,6 +154,10 @@ public: Polyhedron_vertex_deformation_index_map(const P&) { } + + Polyhedron_vertex_deformation_index_map() + { + } }; @@ -190,6 +194,8 @@ public: Polyhedron_edge_deformation_index_map(const P&) {} + + Polyhedron_edge_deformation_index_map() {} }; diff --git a/Surface_mesh_parameterization/include/CGAL/Taucs_solver_traits.h b/Surface_mesh_parameterization/include/CGAL/Taucs_solver_traits.h index c0d80563491..615675fde81 100644 --- a/Surface_mesh_parameterization/include/CGAL/Taucs_solver_traits.h +++ b/Surface_mesh_parameterization/include/CGAL/Taucs_solver_traits.h @@ -259,7 +259,7 @@ public: bool solve (const Vector& B, Vector& X) { int success; - success = taucs_ooc_solve_llt(matrix.get(), + success = taucs_ooc_solve_llt(mtr.get(), X.get_taucs_vector(), (T*) B.get_taucs_vector()); if (success != TAUCS_SUCCESS)