fix a few harmless CLang warnings

i.e. rename class to struct in two forward declarations and remove an
unused private attribute...
This commit is contained in:
Andreas Lauser
2014-03-18 12:41:23 +01:00
parent 62579932fa
commit 911e55c5e6
3 changed files with 2 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ namespace Opm
class SimulatorTimer; class SimulatorTimer;
class PolymerBlackoilState; class PolymerBlackoilState;
class WellState; class WellState;
class SimulatorReport; struct SimulatorReport;
/// Class collecting all necessary components for a two-phase simulation. /// Class collecting all necessary components for a two-phase simulation.
class SimulatorCompressiblePolymer class SimulatorCompressiblePolymer

View File

@@ -140,7 +140,6 @@ namespace Opm
const PolymerInflowInterface& polymer_inflow_; const PolymerInflowInterface& polymer_inflow_;
const std::vector<double>& src_; const std::vector<double>& src_;
const FlowBoundaryConditions* bcs_; const FlowBoundaryConditions* bcs_;
const double* gravity_;
// Solvers // Solvers
IncompTpfaPolymer psolver_; IncompTpfaPolymer psolver_;
TransportSolverTwophasePolymer tsolver_; TransportSolverTwophasePolymer tsolver_;

View File

@@ -39,7 +39,7 @@ namespace Opm
class SimulatorTimer; class SimulatorTimer;
class PolymerState; class PolymerState;
class WellState; class WellState;
class SimulatorReport; struct SimulatorReport;
/// Class collecting all necessary components for a two-phase simulation. /// Class collecting all necessary components for a two-phase simulation.
class SimulatorPolymer class SimulatorPolymer