mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
anonymize unused parameters
This commit is contained in:
parent
ed91f7528b
commit
d81d528207
@ -188,19 +188,20 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
template<class DataHandle>
|
template<class DataHandle>
|
||||||
void scatterData(DataHandle& handle) const
|
void scatterData(DataHandle& /*handle*/) const
|
||||||
{
|
{
|
||||||
// not existing for this type of grid yet
|
// not existing for this type of grid yet
|
||||||
}
|
}
|
||||||
|
|
||||||
template<class DataHandle>
|
template<class DataHandle>
|
||||||
void gatherData(DataHandle& handle) const
|
void gatherData(DataHandle& /*handle*/) const
|
||||||
{
|
{
|
||||||
// not existing for this type of grid yet
|
// not existing for this type of grid yet
|
||||||
}
|
}
|
||||||
|
|
||||||
template<class DataHandle, class InterfaceType, class CommunicationDirection>
|
template<class DataHandle, class InterfaceType, class CommunicationDirection>
|
||||||
void communicate (DataHandle& data, InterfaceType iftype, CommunicationDirection dir) const
|
void communicate (DataHandle& /*data*/, InterfaceType /*iftype*/,
|
||||||
|
CommunicationDirection /*dir*/) const
|
||||||
{
|
{
|
||||||
// not existing for this type of grid yet
|
// not existing for this type of grid yet
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user