- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 116
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.68
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.69
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 11 commits
- 4 files changed
- 1 contributor
Commits on Oct 7, 2023
-
Ignore iter_without_into_iter pedantic clippy lint
warning: `iter` method without an `IntoIterator` impl for `&RcVec<T>` --> src/rcvec.rs:33:5 | 33 | / pub fn iter(&self) -> slice::Iter<T> { 34 | | self.inner.iter() 35 | | } | |_____^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#iter_without_into_iter = note: `-W clippy::iter-without-into-iter` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::iter_without_into_iter)]` help: consider implementing `IntoIterator` for `&RcVec<T>` | 24 + 25 + impl IntoIterator for &RcVec<T> { 26 + type IntoIter = std::slice::Iter<'_, T>; 27 + type Iter = &T; 28 + fn into_iter() -> Self::IntoIter { 29 + self.iter() 30 + } 31 + } |
Configuration menu - View commit details
-
Copy full SHA for 4d8410e - Browse repository at this point
Copy the full SHA 4d8410eView commit details
Commits on Oct 8, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 12eddc0 - Browse repository at this point
Copy the full SHA 12eddc0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c0bd28 - Browse repository at this point
Copy the full SHA 4c0bd28View commit details -
Configuration menu - View commit details
-
Copy full SHA for 137ae0a - Browse repository at this point
Copy the full SHA 137ae0aView commit details
Commits on Oct 9, 2023
-
Merge pull request #411 from dtolnay/sourcetext
Fix source_text treating span.lo as byte offset not char index
Configuration menu - View commit details
-
Copy full SHA for 90b8e1e - Browse repository at this point
Copy the full SHA 90b8e1eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e15461 - Browse repository at this point
Copy the full SHA 0e15461View commit details -
Configuration menu - View commit details
-
Copy full SHA for 31b14c3 - Browse repository at this point
Copy the full SHA 31b14c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c4c3251 - Browse repository at this point
Copy the full SHA c4c3251View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6461c2d - Browse repository at this point
Copy the full SHA 6461c2dView commit details -
Merge pull request #412 from dtolnay/sourcetext
Cache and lazily build the mapping from char index to byte offset
Configuration menu - View commit details
-
Copy full SHA for 42dc36e - Browse repository at this point
Copy the full SHA 42dc36eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 937bbcd - Browse repository at this point
Copy the full SHA 937bbcdView commit details
There are no files selected for viewing