aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sparse_solver.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/sparse_solver.h')
-rw-r--r--test/sparse_solver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sparse_solver.h b/test/sparse_solver.h
index 75fa85082..73d92874c 100644
--- a/test/sparse_solver.h
+++ b/test/sparse_solver.h
@@ -158,9 +158,9 @@ inline std::string get_matrixfolder()
{
std::string mat_folder = TEST_REAL_CASES;
if( internal::is_same<Scalar, std::complex<float> >::value || internal::is_same<Scalar, std::complex<double> >::value )
- mat_folder = mat_folder + static_cast<string>("/complex/");
+ mat_folder = mat_folder + static_cast<std::string>("/complex/");
else
- mat_folder = mat_folder + static_cast<string>("/real/");
+ mat_folder = mat_folder + static_cast<std::string>("/real/");
return mat_folder;
}
#endif