diff options
| author | Giang Dao <dtrnggiang@gmail.com> | 2024-09-20 23:30:31 +0800 |
|---|---|---|
| committer | Giang Dao <dtrnggiang@gmail.com> | 2024-09-20 23:30:31 +0800 |
| commit | ff86fa50fbb71073ec828e82fbfa431a3bdac2b1 (patch) | |
| tree | dad6dca0c487696a4334d088853af6ec31f56735 | |
| parent | 2f6b0618b2076a9445480fbde4f1fb98986c826d (diff) | |
| download | rust-ff86fa50fbb71073ec828e82fbfa431a3bdac2b1.tar.gz rust-ff86fa50fbb71073ec828e82fbfa431a3bdac2b1.zip | |
no_inline for index vec
| -rw-r--r-- | compiler/rustc_index/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_index/src/lib.rs b/compiler/rustc_index/src/lib.rs index 52f354b8eca..cae55230b06 100644 --- a/compiler/rustc_index/src/lib.rs +++ b/compiler/rustc_index/src/lib.rs @@ -17,6 +17,7 @@ mod vec; pub use idx::Idx; pub use rustc_index_macros::newtype_index; pub use slice::IndexSlice; +#[doc(no_inline)] pub use vec::IndexVec; /// Type size assertion. The first argument is a type and the second argument is its expected size. |
