Disable warnings about constant naming style

pull/58/head
Alexey Arbuzov 6 years ago
parent 8eb6e776fe
commit 5e4f15286f

@ -801,9 +801,11 @@ impl QrCode {
/*---- Cconstants and tables ----*/ /*---- Cconstants and tables ----*/
/// The minimum version number supported in the QR Code Model 2 standard. /// The minimum version number supported in the QR Code Model 2 standard.
#[allow(non_upper_case_globals)]
pub const QrCode_MIN_VERSION: Version = Version( 1); pub const QrCode_MIN_VERSION: Version = Version( 1);
/// The maximum version number supported in the QR Code Model 2 standard. /// The maximum version number supported in the QR Code Model 2 standard.
#[allow(non_upper_case_globals)]
pub const QrCode_MAX_VERSION: Version = Version(40); pub const QrCode_MAX_VERSION: Version = Version(40);

Loading…
Cancel
Save