fix some harmless compiler warnings

this comes with a minor API change as well, as the FaultCollection
class did not use the Cartesian size of the grid at all, so I decided
to remove the attributes and the arguments to the constructor...
This commit is contained in:
Andreas Lauser
2014-07-16 13:21:57 +02:00
parent 069ceaa9b7
commit 466a18da98
4 changed files with 5 additions and 10 deletions

View File

@@ -23,10 +23,7 @@
namespace Opm {
FaultCollection::FaultCollection(size_t nx , size_t ny , size_t nz) :
m_nx(nx),
m_ny(ny),
m_nz(nz)
FaultCollection::FaultCollection()
{
}