Added missing typedef (will I ever learn it!?)

Removed unsupported directories that do not provide CMakeList.txt (CMake 2.8 warning).
The BenchTimer is now also working on Cygwin.
This commit is contained in:
Hauke Heibel
2009-12-01 09:20:05 +01:00
parent 052742e6f9
commit 1fc5fdea25
3 changed files with 11 additions and 10 deletions

View File

@@ -132,7 +132,7 @@ struct MatrixScaling
typedef MatrixType ReturnType;
EIGEN_DONT_INLINE static MatrixType run(int num_runs)
{
ei_traits<MatrixType>::Scalar s;
typename ei_traits<MatrixType>::Scalar s;
MatrixType a,b;
return s*a;
}