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

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)) {

View File

@ -152,13 +152,13 @@ class QrSegment final {
/*
* Creates a new QR Code data segment with the given parameters and data.
*/
public: QrSegment(const Mode &md, int numCh, const std::vector<bool> &dt);
public: QrSegment(Mode md, int numCh, const std::vector<bool> &dt);
/*
* Creates a new QR Code data segment with the given parameters and data.
*/
public: QrSegment(const Mode &md, int numCh, std::vector<bool> &&dt);
public: QrSegment(Mode md, int numCh, std::vector<bool> &&dt);
/*---- Methods ----*/