fix a bug in determinant of 4x4 matrices and a small type issue in Inverse

This commit is contained in:
Gael Guennebaud
2008-04-26 08:56:52 +00:00
parent 173e582e3c
commit 62bf0bbd59
3 changed files with 7 additions and 7 deletions

View File

@@ -52,7 +52,7 @@ struct ei_visitor_unroller<Visitor, Derived, 1>
template<typename Visitor, typename Derived>
struct ei_visitor_unroller<Visitor, Derived, Dynamic>
{
static void run(const Derived &mat, Visitor& visitor) {}
static void run(const Derived &, Visitor&) {}
};