mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
fixed: use size_t and not unsigned long
fixes builds on i386
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user