testPVScalarArray: cast to the right type

This commit is contained in:
Matej Sekoranja
2013-11-27 01:45:40 +01:00
parent 134f390a5f
commit 74239303b3

View File

@@ -66,7 +66,7 @@ struct basicTestData {
data.resize(100);
for(size_t i=0; i<data.size(); i++)
{
data[i] = static_cast<int32>(10*i);
data[i] = static_cast<typename PVT::svector::element_type>(10*i);
}
}
};