mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Use brace-init of vector
This commit is contained in:
parent
69116784ff
commit
c6202bb14e
@ -132,21 +132,22 @@ void RicWellPathExportCompletionDataFeature::exportToFolder(RimWellPath* wellPat
|
|||||||
|
|
||||||
// COMPDAT
|
// COMPDAT
|
||||||
{
|
{
|
||||||
std::vector<RifEclipseOutputTableColumn> header;
|
std::vector<RifEclipseOutputTableColumn> header = {
|
||||||
header.push_back(RifEclipseOutputTableColumn("Well", LEFT));
|
RifEclipseOutputTableColumn{"Well", LEFT},
|
||||||
header.push_back(RifEclipseOutputTableColumn("I", LEFT));
|
RifEclipseOutputTableColumn{"I", LEFT},
|
||||||
header.push_back(RifEclipseOutputTableColumn("J", LEFT));
|
RifEclipseOutputTableColumn{"J", LEFT},
|
||||||
header.push_back(RifEclipseOutputTableColumn("K1", LEFT));
|
RifEclipseOutputTableColumn{"K1", LEFT},
|
||||||
header.push_back(RifEclipseOutputTableColumn("K2", LEFT));
|
RifEclipseOutputTableColumn{"K2", LEFT},
|
||||||
header.push_back(RifEclipseOutputTableColumn("Status", LEFT));
|
RifEclipseOutputTableColumn{"Status", LEFT},
|
||||||
header.push_back(RifEclipseOutputTableColumn("SAT", LEFT));
|
RifEclipseOutputTableColumn{"SAT", LEFT},
|
||||||
header.push_back(RifEclipseOutputTableColumn("TR", LEFT));
|
RifEclipseOutputTableColumn{"TR", LEFT},
|
||||||
header.push_back(RifEclipseOutputTableColumn("DIAM", LEFT));
|
RifEclipseOutputTableColumn{"DIAM", LEFT},
|
||||||
header.push_back(RifEclipseOutputTableColumn("KH", LEFT));
|
RifEclipseOutputTableColumn{"KH", LEFT},
|
||||||
header.push_back(RifEclipseOutputTableColumn("S", LEFT));
|
RifEclipseOutputTableColumn{"S", LEFT},
|
||||||
header.push_back(RifEclipseOutputTableColumn("Df", LEFT));
|
RifEclipseOutputTableColumn{"Df", LEFT},
|
||||||
header.push_back(RifEclipseOutputTableColumn("DIR", LEFT));
|
RifEclipseOutputTableColumn{"DIR", LEFT},
|
||||||
header.push_back(RifEclipseOutputTableColumn("r0", LEFT));
|
RifEclipseOutputTableColumn{"r0", LEFT}
|
||||||
|
};
|
||||||
|
|
||||||
formatter.keyword("COMPDAT");
|
formatter.keyword("COMPDAT");
|
||||||
formatter.header(header);
|
formatter.header(header);
|
||||||
|
Loading…
Reference in New Issue
Block a user