Fix warnings in Functional

This commit is contained in:
Jørgen Kvalsvik
2016-07-13 09:58:00 +02:00
parent 6226a154c7
commit 02785741a6

View File

@@ -21,9 +21,9 @@
namespace Opm {
namespace fun {
iota::iota( int begin, int end ) : first( begin ), last( end ) {}
iota::iota( int fst, int lst ) : first( fst ), last( lst ) {}
iota::iota( int end ) : iota( 0, end ) {}
iota::iota( int lst ) : iota( 0, lst ) {}
size_t iota::size() const {
return this->last - this->first;