We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 57c817e + 9d9785b commit 199f206Copy full SHA for 199f206
i18n/gencat.rs
@@ -553,6 +553,7 @@ impl MessageCatalog {
553
}
554
555
/// Read the **GNU based** binary catalog file and build [MessageCatalog]
556
+ #[allow(clippy::needless_range_loop)]
557
pub fn read_catfile<T: Read>(
558
mut input: T,
559
) -> Result<MessageCatalog, Box<dyn std::error::Error>> {
@@ -590,7 +591,7 @@ impl MessageCatalog {
590
591
ptr += 4;
592
593
- // note: probably compare be_array and le_array as they should be the same
594
+ // TODO: probably compare be_array and le_array as they should be the same
595
596
let string_pool = &buf[ptr..];
597
0 commit comments