Fix unused argument warnings.

This commit is contained in:
Atgeirr Flø Rasmussen 2015-07-08 12:37:11 +02:00
parent 5965b7246c
commit 7df516896d
2 changed files with 2 additions and 2 deletions

View File

@ -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; }
/*!

View File

@ -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