Added an assertion check to C++ code.

pull/4/head
Nayuki Minase 9 years ago
parent 7622a9d799
commit def528043e

@ -334,6 +334,8 @@ std::vector<uint8_t> qrcodegen::QrCode::appendErrorCorrection(const std::vector<
result.push_back(blocks.at(j).at(i));
}
}
if (result.size() != static_cast<unsigned int>(getNumRawDataModules(version) / 8))
throw "Assertion error";
return result;
}

Loading…
Cancel
Save