Uh oh!
There was an error while loading. Please reload this page.
Convert ivec type syntax from T[] to [T] - #806
Closed
erickt wants to merge 6 commits into
Closed
Conversation
brson
commented
Aug 5, 2011
Contributor
This looks great. Working on integrating it now. |
brson
commented
Aug 5, 2011
Contributor
I don't think I'm going to get to this today. The windows build is broken so we can't snapshot. |
erickt
commented
Aug 6, 2011
ContributorAuthor
No rush, thanks for looking into this :) On Fri, Aug 5, 2011 at 4:53 PM, brson
|
This preserves the old syntax for now.
erickt
commented
Aug 6, 2011
ContributorAuthor
By the way, I re-rebased this patch on top of the graydon/master. |
brson
commented
Aug 9, 2011
Contributor
I've pushed the pre-snapshot commits. Still waiting for the right conditions to do the snapshot. |
brson
commented
Aug 9, 2011
Contributor
Integrated. |
keeperofdakeys pushed a commit
to keeperofdakeys/rust
that referenced
this pull request
Dec 12, 2017
define SYS_renameat2 + flags on linux Motivation: there is no glibc wrapper for this syscall
bjorn3 added a commit
to bjorn3/rust
that referenced
this pull request
Mar 5, 2021
bjorn3 added a commit
to bjorn3/rust
that referenced
this pull request
Mar 20, 2022
ZuseZ4 pushed a commit
to EnzymeAD/rust
that referenced
this pull request
Mar 7, 2023
celinval pushed a commit
to celinval/rust-dev
that referenced
this pull request
Jun 4, 2024
noscripter pushed a commit
to noscripter/rust
that referenced
this pull request
Sep 8, 2025
* feat: add Stable Matching Algorithm * Changes * Changes * add cases * consize * Suggested changes * fmt --------- Co-authored-by: Piotr Idzik <65706193+vil02@users.noreply.github.com>
GuillaumeGomez pushed a commit
to GuillaumeGomez/rust
that referenced
this pull request
Nov 26, 2025
Update gccjit dependency
U007D pushed a commit
to U007D/rust-mos
that referenced
this pull request
Aug 21, 2026
Fix `unused_must_use` inside `Box` After rust-lang#62228, this will be linted against (and causes the test to fail). (This blocks rust-lang#62228.)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is the first attempt at converting the ivec type syntax from T[] to [T]. It seems to work with a check-full, so I expect no problems. There are three phases to this commit. First is adding support for the syntax [T]. Then, all the code is converted over to the [T] syntax. Finally, support for T[] is removed.
As a word of caution, the commit 4ea04c9 (Change the ivec type syntax to [T]) needs a stage 3 snapshot made before the rest of the commits can be committed.
Please let me know if you need any tweaks.