mirror of
https://github.com/boostorg/ublas.git
synced 2026-02-19 14:52:17 +00:00
a pair of missing std:: qualifers for size_t
[SVN r24287]
This commit is contained in:
@@ -182,23 +182,23 @@ void test_vector () {
|
||||
#ifdef USE_STD_MAP
|
||||
#ifdef USE_FLOAT
|
||||
std::cout << "float, std::map" << std::endl;
|
||||
test_my_vector<ublas::sparse_vector<float, std::map<size_t, float> >, 3 > () ();
|
||||
test_my_vector<ublas::sparse_vector<float, std::map<std::size_t, float> >, 3 > () ();
|
||||
#endif
|
||||
|
||||
#ifdef USE_DOUBLE
|
||||
std::cout << "double, std::map" << std::endl;
|
||||
test_my_vector<ublas::sparse_vector<double, std::map<size_t, double> >, 3 > () ();
|
||||
test_my_vector<ublas::sparse_vector<double, std::map<std::size_t, double> >, 3 > () ();
|
||||
#endif
|
||||
|
||||
#ifdef USE_STD_COMPLEX
|
||||
#ifdef USE_FLOAT
|
||||
std::cout << "std::complex<float>, std::map" << std::endl;
|
||||
test_my_vector<ublas::sparse_vector<std::complex<float>, std::map<size_t, std::complex<float> > >, 3 > () ();
|
||||
test_my_vector<ublas::sparse_vector<std::complex<float>, std::map<std::size_t, std::complex<float> > >, 3 > () ();
|
||||
#endif
|
||||
|
||||
#ifdef USE_DOUBLE
|
||||
std::cout << "std::complex<double>, std::map" << std::endl;
|
||||
test_my_vector<ublas::sparse_vector<std::complex<double>, std::map<size_t, std::complex<double> > > , 3 > () ();
|
||||
test_my_vector<ublas::sparse_vector<std::complex<double>, std::map<std::size_t, std::complex<double> > > , 3 > () ();
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user