Skip to content

Commit 0ac376e

Browse files
Zalathargitbot
authored and
gitbot
committed
Sort and separate lint/feature attributes in profiler_builtins
1 parent 44f83ae commit 0ac376e

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

profiler_builtins/src/lib.rs

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
#![no_std]
1+
// tidy-alphabetical-start
2+
#![allow(internal_features)]
3+
#![allow(unused_features)]
24
#![feature(profiler_runtime)]
5+
#![feature(staged_api)]
6+
// tidy-alphabetical-end
7+
8+
// Other attributes:
9+
#![no_std]
310
#![profiler_runtime]
411
#![unstable(
512
feature = "profiler_runtime_lib",
613
reason = "internal implementation detail of rustc right now",
714
issue = "none"
815
)]
9-
#![allow(unused_features)]
10-
#![allow(internal_features)]
11-
#![feature(staged_api)]

0 commit comments

Comments
 (0)