Skip to content

Commit 6eb1191

Browse files
committed
refactor: fix out-of-order instantiation
1 parent 2ef7538 commit 6eb1191

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/flowmeasure/ConcreteMeasure.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace ECFMP::FlowMeasure {
1414
{}
1515

1616
ConcreteMeasure::ConcreteMeasure(MeasureType type, std::set<std::string> value)
17-
: type(MeasureType::MandatoryRoute), setValue(std::move(value)), valueType(MeasureValueType::Set)
17+
: type(MeasureType::MandatoryRoute), valueType(MeasureValueType::Set), setValue(std::move(value))
1818
{}
1919

2020
auto ConcreteMeasure::Type() const noexcept -> MeasureType

0 commit comments

Comments
 (0)