Remove const on return type.

This commit is contained in:
Atgeirr Flø Rasmussen 2015-06-23 13:25:52 +02:00
parent 383322b760
commit f90afe5d38

View File

@ -40,12 +40,12 @@ namespace Opm {
{
}
const double getX() const
double getX() const
{
return x_;
}
const double getY() const
double getY() const
{
return y_;
}