Skip to content

Commit 9d23889

Browse files
committed
Make profiler_builtins #![no_core] instead of just #![no_std]
This crate doesn't contain any actual Rust code; it's just C/C++ code built and packaged in a Rust-friendly way.
1 parent 128dc09 commit 9d23889

File tree

1 file changed

+2
-1
lines changed
  • library/profiler_builtins/src

1 file changed

+2
-1
lines changed

library/profiler_builtins/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
// tidy-alphabetical-start
22
#![allow(internal_features)]
3+
#![feature(no_core)]
34
#![feature(profiler_runtime)]
45
#![feature(staged_api)]
56
// tidy-alphabetical-end
67

78
// Other attributes:
8-
#![no_std]
9+
#![no_core]
910
#![profiler_runtime]
1011
#![unstable(
1112
feature = "profiler_runtime_lib",

0 commit comments

Comments
 (0)