fixed: use size_t and not unsigned long

fixes builds on i386
This commit is contained in:
Arne Morten Kvarving 2015-04-14 10:25:21 +02:00
parent 6589b8d7a1
commit 39e1d29176

View File

@ -79,7 +79,7 @@ namespace Opm {
container.resize( size );
}
template <class T, unsigned long n>
template <class T, size_t n>
void resizeContainer( std::array<T, n>& /* a */, size_t size )
{
static_cast<void>(size);