fixed: move string to avoid copy

This commit is contained in:
Arne Morten Kvarving
2019-07-10 09:01:34 +02:00
parent b860fdbccc
commit c720dfe8a8

View File

@@ -80,7 +80,7 @@ public:
}
void compareSpesificKeyword(std::string keyword) {
this->spesificKeyword = keyword;
this->spesificKeyword = std::move(keyword);
}
void compareSpesificRstReportStepNumber(int seqn) {
this->spesificSequence = seqn;