| 483 | |
| 484 | |
| 485 | void QrCode::setFunctionModule(int x, int y, bool isDark) { |
| 486 | size_t ux = static_cast<size_t>(x); |
| 487 | size_t uy = static_cast<size_t>(y); |
| 488 | modules .at(uy).at(ux) = isDark; |
| 489 | isFunction.at(uy).at(ux) = true; |
| 490 | } |
| 491 | |
| 492 | |
| 493 | bool QrCode::module(int x, int y) const { |
nothing calls this directly
no outgoing calls
no test coverage detected