aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-12-01 09:20:05 +0100
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2009-12-01 09:20:05 +0100
commit1fc5fdea25212431f0029062b78da5c0cc1621b8 (patch)
tree90e56bec96740d1abf39d2f9599f518e6f741d8c /unsupported
parent052742e6f9582a633ea3d58a5adf230b192e445e (diff)
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.
Diffstat (limited to 'unsupported')
-rw-r--r--unsupported/Eigen/src/CMakeLists.txt4
-rw-r--r--unsupported/test/nesting_profiling.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/unsupported/Eigen/src/CMakeLists.txt b/unsupported/Eigen/src/CMakeLists.txt
index 195808c59..a0870d3af 100644
--- a/unsupported/Eigen/src/CMakeLists.txt
+++ b/unsupported/Eigen/src/CMakeLists.txt
@@ -2,6 +2,6 @@ ADD_SUBDIRECTORY(IterativeSolvers)
ADD_SUBDIRECTORY(BVH)
ADD_SUBDIRECTORY(AutoDiff)
ADD_SUBDIRECTORY(MoreVectorization)
-ADD_SUBDIRECTORY(FFT)
-ADD_SUBDIRECTORY(Skyline)
+# ADD_SUBDIRECTORY(FFT)
+# ADD_SUBDIRECTORY(Skyline)
ADD_SUBDIRECTORY(MatrixFunctions)
diff --git a/unsupported/test/nesting_profiling.cpp b/unsupported/test/nesting_profiling.cpp
index c19081e5a..bee5b3c70 100644
--- a/unsupported/test/nesting_profiling.cpp
+++ b/unsupported/test/nesting_profiling.cpp
@@ -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;
}