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