Update SVD Module to allow specifying computation options with a template parameter. Resolves #2051
diff --git a/test/nomalloc.cpp b/test/nomalloc.cpp
index cb4c073..689a4cc 100644
--- a/test/nomalloc.cpp
+++ b/test/nomalloc.cpp
@@ -152,7 +152,7 @@
   x = fpQR.solve(b);
 
   // SVD module
-  Eigen::JacobiSVD<Matrix> jSVD; jSVD.compute(A, ComputeFullU | ComputeFullV);
+  Eigen::JacobiSVD<Matrix, ComputeFullU | ComputeFullV> jSVD; jSVD.compute(A);
 }
 
 void test_zerosized() {