File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ macro_rules! thread_local {
178
178
macro_rules! __thread_local_inner {
179
179
// used to generate the `LocalKey` value for const-initialized thread locals
180
180
( @key $t: ty, const $init: expr) => { {
181
- #[ cfg_attr( not( windows) , inline( always ) ) ] // see comments below
181
+ #[ cfg_attr( not( windows) , inline) ] // see comments below
182
182
unsafe fn __getit(
183
183
_init: $crate:: option:: Option <& mut $crate:: option:: Option <$t>>,
184
184
) -> $crate:: option:: Option <& ' static $t> {
@@ -311,7 +311,7 @@ macro_rules! __thread_local_inner {
311
311
// gets the pessimistic path for now where it's never inlined.
312
312
//
313
313
// The issue of "should enable on Windows sometimes" is #84933
314
- #[ cfg_attr( not( windows) , inline( always ) ) ]
314
+ #[ cfg_attr( not( windows) , inline) ]
315
315
unsafe fn __getit(
316
316
init: $crate:: option:: Option <& mut $crate:: option:: Option <$t>>,
317
317
) -> $crate:: option:: Option <& ' static $t> {
You can’t perform that action at this time.
0 commit comments