mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-16 15:41:56 -06:00
Remove const from bool return type.
Since it has no effect for value types, and generates a warning.
This commit is contained in:
parent
850845c61d
commit
f0190dd2bb
@ -202,7 +202,7 @@ namespace Opm
|
||||
const std::string& outputDirectory() const { return outputDir_; }
|
||||
|
||||
/** \brief return true if output is enabled */
|
||||
const bool output () const { return output_; }
|
||||
bool output () const { return output_; }
|
||||
|
||||
void restore(SimulatorTimerInterface& timer,
|
||||
BlackoilState& state,
|
||||
|
Loading…
Reference in New Issue
Block a user