Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleaned up os::consts #13697

Closed
wants to merge 1 commit into from
Closed

Cleaned up os::consts #13697

wants to merge 1 commit into from

Conversation

pongad
Copy link
Contributor

@pongad pongad commented Apr 23, 2014

I decided to put architecture constants in another mod. They are not used, so a part of me is thinking of just getting rid of them altogether. The rest should be similar to what @brson wants.
Fixes #13536

}
#[cfg(target_arch = "mips")]
pub mod arch_consts {
pub static ARCH: &'static str = "mips";
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of having a separate module for arch_consts, perhaps we could reexport under the same module?

#[cfg(target_os = "relevant-platform")]
pub mod consts {
    pub use os::arch_consts::ARCH;

    // ...
}

#[cfg(target_arch = "relevant-arch")]
mod arch_consts {
    pub static ARCH: &'static str = "foo";
}

@pongad
Copy link
Contributor Author

pongad commented Apr 23, 2014

@alexcrichton Fixed!

@alexcrichton
Copy link
Member

Looks good to me! Just one minor nit, and could you tweak the commit message in accordance with our new breaking change policy? It doesn't need to be too long, but this will break any existing code relying on the previous structure of std::os::consts.

@pongad
Copy link
Contributor Author

pongad commented Apr 25, 2014

It seems I am having git problems. The tests should work now though, fixing.

@alexcrichton
Copy link
Member

Hm, this seems to have picked up a few extra commits. If you do git fetch origin && git rebase origin/master it may fix it?

…et OS and arch.

Constants for other OS's and arch's must be defined manually.
[breaking-change]
@pongad
Copy link
Contributor Author

pongad commented Apr 25, 2014

@alexcrichton This should work now. Thanks!

bors added a commit that referenced this pull request Apr 25, 2014
I decided to put architecture constants in another mod. They are not used, so a part of me is thinking of just getting rid of them altogether. The rest should be similar to what @brson wants.
Fixes #13536
@bors bors closed this Apr 25, 2014
@pongad pongad deleted the consts branch April 25, 2014 20:14
arcnmx pushed a commit to arcnmx/rust that referenced this pull request Dec 17, 2022
…solve-data, r=jonas-schievink

internal: Version the inlay hint resolve data

cc rust-lang/rust-analyzer#13657
cc rust-lang/rust-analyzer#13372
cc rust-lang/rust-analyzer#13170

This will make us log an error and return the unmodified inlay hints when the client attempts to resolve inlay hints in a file that has since been modified.
flip1995 pushed a commit to flip1995/rust that referenced this pull request Feb 20, 2025
Closes rust-lang#13697.

---

changelog: add [`owned_cow`] lint
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Design of std::os::consts is unmaintainable/unspeccable
3 participants