Remove surplus const for return-by-value.

This triggers compiler warnings at high warning levels.
This commit is contained in:
Atgeirr Flø Rasmussen
2015-03-06 08:52:39 +01:00
parent a5e6236580
commit d33a05db70
2 changed files with 2 additions and 2 deletions

View File

@@ -89,7 +89,7 @@ namespace Opm {
return m_name;
}
const UnitSystem::UnitType UnitSystem::getType() const {
UnitSystem::UnitType UnitSystem::getType() const {
return m_unittype;
}