diff options
| author | Marijan Petričević <marijan.petricevic94@gmail.com> | 2024-04-12 11:28:35 -0500 |
|---|---|---|
| committer | Marijan Petričević <marijan.petricevic94@gmail.com> | 2024-04-12 11:30:12 -0500 |
| commit | 861e213f878d1e0412a6eb57ba33025adf047bee (patch) | |
| tree | 417a91209dab60c276cbaa6fc1c2b58314baee58 | |
| parent | bd71213cf0a765705e7d72a099151bd4eb465ccb (diff) | |
| download | rust-861e213f878d1e0412a6eb57ba33025adf047bee.tar.gz rust-861e213f878d1e0412a6eb57ba33025adf047bee.zip | |
zkvm: remove cmath
- Remove cmath from zkvm module since cmath was moved to sys and is shared by all platforms (see #120109)
| -rw-r--r-- | library/std/src/sys/pal/zkvm/mod.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/library/std/src/sys/pal/zkvm/mod.rs b/library/std/src/sys/pal/zkvm/mod.rs index 62f0a2c7b1c..4f79f8c4961 100644 --- a/library/std/src/sys/pal/zkvm/mod.rs +++ b/library/std/src/sys/pal/zkvm/mod.rs @@ -12,8 +12,6 @@ const WORD_SIZE: usize = core::mem::size_of::<u32>(); pub mod alloc; #[path = "../zkvm/args.rs"] pub mod args; -#[path = "../unix/cmath.rs"] -pub mod cmath; pub mod env; #[path = "../unsupported/fs.rs"] pub mod fs; |
