anonymize unused parameters

This commit is contained in:
Arne Morten Kvarving 2023-05-31 09:33:01 +02:00
parent ed91f7528b
commit d81d528207

View File

@ -188,19 +188,20 @@ public:
}
template<class DataHandle>
void scatterData(DataHandle& handle) const
void scatterData(DataHandle& /*handle*/) const
{
// not existing for this type of grid yet
}
template<class DataHandle>
void gatherData(DataHandle& handle) const
void gatherData(DataHandle& /*handle*/) const
{
// not existing for this type of grid yet
}
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
}