-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Cleaned up os::consts #13697
Conversation
} | ||
#[cfg(target_arch = "mips")] | ||
pub mod arch_consts { | ||
pub static ARCH: &'static str = "mips"; | ||
} |
There was a problem hiding this comment.
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";
}
@alexcrichton Fixed! |
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 |
It seems I am having git problems. The tests should work now though, fixing. |
Hm, this seems to have picked up a few extra commits. If you do |
…et OS and arch. Constants for other OS's and arch's must be defined manually. [breaking-change]
@alexcrichton This should work now. Thanks! |
…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.
Closes rust-lang#13697. --- changelog: add [`owned_cow`] lint
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