mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-25 10:03:23 +00:00
chore: update toolchain version to 2024-11-05 (#1031)
* chore: update toolchain version to 2024-11-05 * update dragon reach to e945c217b3 * update dog to 6f2c0c8f12 --------- Co-authored-by: longjin <longjin@DragonOS.org>
This commit is contained in:
@ -16,7 +16,7 @@ struct EmptyIdaItemRef<'a> {
|
||||
_marker: PhantomData<&'a EmptyIdaItem>,
|
||||
}
|
||||
|
||||
impl<'a> Deref for EmptyIdaItemRef<'a> {
|
||||
impl Deref for EmptyIdaItemRef<'_> {
|
||||
type Target = EmptyIdaItem;
|
||||
|
||||
fn deref(&self) -> &Self::Target {
|
||||
@ -27,7 +27,10 @@ impl<'a> Deref for EmptyIdaItemRef<'a> {
|
||||
struct EmptyIdaItem;
|
||||
|
||||
unsafe impl kdepends::xarray::ItemEntry for EmptyIdaItem {
|
||||
type Ref<'a> = EmptyIdaItemRef<'a> where Self: 'a;
|
||||
type Ref<'a>
|
||||
= EmptyIdaItemRef<'a>
|
||||
where
|
||||
Self: 'a;
|
||||
|
||||
fn into_raw(self) -> *const () {
|
||||
core::ptr::null()
|
||||
|
Reference in New Issue
Block a user