fix compilation error due to a missing return statement

This commit is contained in:
Nikos Ftylitakis 2019-07-03 14:17:37 +03:00
parent 0c624d1e9c
commit a9744f9b89

View File

@ -57,6 +57,8 @@ ErrorCorrectionLevel& ErrorCorrectionLevel::operator=(const ErrorCorrectionLevel
ordinal_ = other.ordinal();
bits_ = other.bits();
name_ = other.name();
return *this;
}
ErrorCorrectionLevel& ErrorCorrectionLevel::forBits(int bits) {