diff options
| author | Jonas Schievink <jonasschievink@gmail.com> | 2020-03-15 19:43:25 +0100 |
|---|---|---|
| committer | Jonas Schievink <jonasschievink@gmail.com> | 2020-03-15 19:43:25 +0100 |
| commit | f53f9a88f16dc3d1b94ed2e7f0f201e1456d8cfc (patch) | |
| tree | 86977a97d6fc6b04de52bf0ebe40e66377b67946 /src/libcore/cell.rs | |
| parent | 5da2e53f471f5eea60f534845b90c97ecabb71cb (diff) | |
| download | rust-f53f9a88f16dc3d1b94ed2e7f0f201e1456d8cfc.tar.gz rust-f53f9a88f16dc3d1b94ed2e7f0f201e1456d8cfc.zip | |
Bump the bootstrap compiler
Diffstat (limited to 'src/libcore/cell.rs')
| -rw-r--r-- | src/libcore/cell.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/cell.rs b/src/libcore/cell.rs index 9ebb3176418..a84f0caf0a0 100644 --- a/src/libcore/cell.rs +++ b/src/libcore/cell.rs @@ -1538,7 +1538,7 @@ impl<T: ?Sized + fmt::Display> fmt::Display for RefMut<'_, T> { #[lang = "unsafe_cell"] #[stable(feature = "rust1", since = "1.0.0")] #[repr(transparent)] -#[cfg_attr(not(bootstrap), repr(no_niche))] // rust-lang/rust#68303. +#[repr(no_niche)] // rust-lang/rust#68303. pub struct UnsafeCell<T: ?Sized> { value: T, } |
