template <typename VectorType>
typename std_cxx11::enable_if<!IsBlockVector<VectorType>::value,
unsigned int>::type
- n_blocks(const VectorType &vector)
+ n_blocks(const VectorType &)
{
return 1;
}
template <typename VectorType>
typename std_cxx11::enable_if<!IsBlockVector<VectorType>::value,
VectorType &>::type
- subblock(VectorType &vector, unsigned int block_no)
+ subblock(VectorType &vector, unsigned int)
{
return vector;
}
template <typename VectorType>
typename std_cxx11::enable_if<!IsBlockVector<VectorType>::value,
const VectorType &>::type
- subblock(const VectorType &vector, unsigned int block_no)
+ subblock(const VectorType &vector, unsigned int)
{
return vector;
}
template <typename VectorType>
typename std_cxx11::enable_if<!IsBlockVector<VectorType>::value,
void>::type
- collect_sizes(const VectorType &vector)
+ collect_sizes(const VectorType &)
{}
}