-
-
Notifications
You must be signed in to change notification settings - Fork 136
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: dtolnay/proc-macro2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.86
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: dtolnay/proc-macro2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.87
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 6 commits
- 3 files changed
- 1 contributor
Commits on Aug 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9c1d3eb - Browse repository at this point
Copy the full SHA 9c1d3ebView commit details
Commits on Oct 6, 2024
-
Ignore needless_lifetimes clippy lint
warning: the following explicit lifetimes could be elided: 'a --> src/rcvec.rs:96:6 | 96 | impl<'a, T> RcVecMut<'a, T> { | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `-W clippy::needless-lifetimes` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::needless_lifetimes)]` help: elide the lifetimes | 96 - impl<'a, T> RcVecMut<'a, T> { 96 + impl<T> RcVecMut<'_, T> { |Configuration menu - View commit details
-
Copy full SHA for 27061af - Browse repository at this point
Copy the full SHA 27061afView commit details
Commits on Oct 7, 2024
-
Ignore missing_panics_doc pedantic clippy lint
warning: docs for function which may panic missing `# Panics` section --> src/lib.rs:836:5 | 836 | pub fn new(ch: char, spacing: Spacing) -> Self { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | note: first possible panic found here --> src/lib.rs:846:13 | 846 | panic!("unsupported proc macro punctuation character {:?}", ch); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_panics_doc = note: `-W clippy::missing-panics-doc` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::missing_panics_doc)]`Configuration menu - View commit details
-
Copy full SHA for d60aaad - Browse repository at this point
Copy the full SHA d60aaadView commit details -
Check valid punctuation character in Punct::new
Valid punctuation characters generated by: use proc_macro::{Punct, Spacing, TokenStream}; use std::panic; #[proc_macro] pub fn punct_chars(_input: TokenStream) -> TokenStream { for ch in '\0'..=char::MAX { if let Ok(_) = panic::catch_unwind(|| { let _ = Punct::new(ch, Spacing::Alone); }) { eprintln!("{:?}", ch); } } TokenStream::new() }1Configuration menu - View commit details
-
Copy full SHA for 98ea261 - Browse repository at this point
Copy the full SHA 98ea261View commit details -
Merge pull request #471 from dtolnay/punctnew
Check valid punctuation character in Punct::new
Configuration menu - View commit details
-
Copy full SHA for f0b6802 - Browse repository at this point
Copy the full SHA f0b6802View commit details -
Configuration menu - View commit details
-
Copy full SHA for 50b477d - Browse repository at this point
Copy the full SHA 50b477dView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 1.0.86...1.0.87