Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/toml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'\u{41}'..='\u{5A}'
| '\u{61}'..='\u{7A}'
| '\u{30}'..='\u{39}'
| '\u{2D}'

Check warning on line 15 in src/toml.rs

View workflow job for this annotation

GitHub Actions / Build (ubuntu-latest, x86_64-unknown-linux-gnu)

unreachable pattern

Check warning on line 15 in src/toml.rs

View workflow job for this annotation

GitHub Actions / Test Individual Features (toml)

unreachable pattern

Check warning on line 15 in src/toml.rs

View workflow job for this annotation

GitHub Actions / Test (ubuntu-latest, x86_64-unknown-linux-gnu)

unreachable pattern

Check warning on line 15 in src/toml.rs

View workflow job for this annotation

GitHub Actions / Build (ubuntu-latest, wasm32-unknown-unknown)

unreachable pattern

Check warning on line 15 in src/toml.rs

View workflow job for this annotation

GitHub Actions / Test Individual Features NoStd (toml)

unreachable pattern

Check warning on line 15 in src/toml.rs

View workflow job for this annotation

GitHub Actions / Test No Std (ubuntu-latest, x86_64-unknown-linux-gnu)

unreachable pattern

Check warning on line 15 in src/toml.rs

View workflow job for this annotation

GitHub Actions / Test No Std (ubuntu-latest, x86_64-unknown-linux-gnu)

unreachable pattern

Check warning on line 15 in src/toml.rs

View workflow job for this annotation

GitHub Actions / Build (macos-latest, x86_64-apple-darwin)

unreachable pattern

Check warning on line 15 in src/toml.rs

View workflow job for this annotation

GitHub Actions / Build (ubuntu-latest, x86_64-pc-windows-gnu)

unreachable pattern

Check warning on line 15 in src/toml.rs

View workflow job for this annotation

GitHub Actions / Build (windows-latest, x86_64-pc-windows-msvc)

unreachable pattern
| '\u{5F}'
| '\u{B2}'
| '\u{B3}'
Expand Down Expand Up @@ -393,7 +393,7 @@
self.line += 1;
self.col = 0;
} else {
self.col = 0;
self.col += 1;
}
} else {
self.cur = '\0';
Expand Down
Loading