Fix broken asserts releaved by Clang.

This commit is contained in:
Keir Mierle
2012-01-18 15:03:27 -08:00
parent 589cc627f8
commit 274f8a0947
2 changed files with 2 additions and 2 deletions

View File

@@ -573,7 +573,7 @@ void EigenSolver<MatrixType>::doComputeEigenvectors()
}
else
{
eigen_assert("Internal bug in EigenSolver"); // this should not happen
eigen_assert(0 && "Internal bug in EigenSolver"); // this should not happen
}
}