Fix unused argument warnings.
This commit is contained in:
parent
5965b7246c
commit
7df516896d
@ -92,7 +92,7 @@ public:
|
||||
|
||||
// this operator does not do anything and is thus not a copy operator, but it is
|
||||
// required to make std::unique_ptr happy on old compilers
|
||||
SatFuncMultiplexer& operator=(const SatFuncMultiplexer& other)
|
||||
SatFuncMultiplexer& operator=(const SatFuncMultiplexer&)
|
||||
{ return *this; }
|
||||
|
||||
/*!
|
||||
|
@ -80,7 +80,7 @@ public:
|
||||
/*!
|
||||
* \brief Returns the temperature [K] of a phase for the current cell index.
|
||||
*/
|
||||
Scalar temperature(int phaseIdx) const
|
||||
Scalar temperature(int /* phaseIdx */) const
|
||||
{ return temperature_[arrayIdx_]; }
|
||||
|
||||
// TODO (?) pressure, composition, etc
|
||||
|
Loading…
Reference in New Issue
Block a user