aboutsummaryrefslogtreecommitdiff
path: root/src/marker.rs
diff options
context:
space:
mode:
authorJames Farrell <jamesfarrell@google.com>2023-08-15 17:25:00 +0000
committerJames Farrell <jamesfarrell@google.com>2023-08-15 17:40:26 +0000
commit5c471c4a5c3e80c810dadb19c5996e420426c3bc (patch)
tree776963f06ac58a6bb87f22179ffa07a9401eadad /src/marker.rs
parent0f3d74e8f41021bd82e05a51ebbe0f067fcdfe0a (diff)
downloadproc-macro2-5c471c4a5c3e80c810dadb19c5996e420426c3bc.tar.gz
Upgrade proc-macro2 to 1.0.66emu-33-dev
This project was upgraded with external_updater. Usage: tools/external_updater/updater.sh update rust/crates/proc-macro2 For more info, check https://cs.android.com/android/platform/superproject/+/main:tools/external_updater/README.md Test: TreeHugger Change-Id: I42a7ce27e4cee2efe110c6efc63fb215ab0e4c9a Bug: 295883071
Diffstat (limited to 'src/marker.rs')
-rw-r--r--src/marker.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/marker.rs b/src/marker.rs
index 59fd096..e648dd2 100644
--- a/src/marker.rs
+++ b/src/marker.rs
@@ -1,6 +1,6 @@
+use alloc::rc::Rc;
use core::marker::PhantomData;
-use std::panic::{RefUnwindSafe, UnwindSafe};
-use std::rc::Rc;
+use core::panic::{RefUnwindSafe, UnwindSafe};
// Zero sized marker with the correct set of autotrait impls we want all proc
// macro types to have.