Tweaked usages of C++ QrSegment::Mode class to be passed by value instead of const reference.

This commit is contained in:
Project Nayuki
2017-09-06 04:06:57 +00:00
parent a138e6fbc3
commit 236a999637
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -151,7 +151,7 @@ QrSegment QrSegment::makeEci(long assignVal) {
}
QrSegment::QrSegment(const Mode &md, int numCh, const std::vector<bool> &dt) :
QrSegment::QrSegment(Mode md, int numCh, const std::vector<bool> &dt) :
mode(md),
numChars(numCh),
data(dt) {
@@ -160,7 +160,7 @@ QrSegment::QrSegment(const Mode &md, int numCh, const std::vector<bool> &dt) :
}
QrSegment::QrSegment(const Mode &md, int numCh, std::vector<bool> &&dt) :
QrSegment::QrSegment(Mode md, int numCh, std::vector<bool> &&dt) :
mode(md),
numChars(numCh),
data(std::move(dt)) {