mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Merge pull request #5925 from akva2/janitoring
janitoring: use string concat instead of operator+
This commit is contained in:
commit
9fb46ab420
@ -349,12 +349,10 @@ void FlowGenericVanguard::init()
|
||||
{
|
||||
if (comm.rank() == 0)
|
||||
{
|
||||
std::string message =
|
||||
std::string("Option --allow-distributed-wells=true in a model with\n")
|
||||
+ "multisegment wells. This feature is still experimental. You can\n"
|
||||
+ "set --use-multisegment-well=false to treat the existing \n"
|
||||
+ "multisegment wells as standard wells.";
|
||||
OpmLog::info(message);
|
||||
OpmLog::info("Option --allow-distributed-wells=true in a model with\n"
|
||||
"multisegment wells. This feature is still experimental. You can\n"
|
||||
"set --use-multisegment-well=false to treat the existing\n"
|
||||
"multisegment wells as standard wells.");
|
||||
}
|
||||
comm.barrier();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user