Skip to content

Commit

Permalink
Fix warning on some feature combinations
Browse files Browse the repository at this point in the history
  • Loading branch information
athre0z committed Mar 9, 2024
1 parent ad423b9 commit 4ecbe77
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/decoder.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
use crate::*;
use core::{fmt, hash, marker::PhantomData, mem, mem::MaybeUninit, ops, ptr};
use core::{fmt, marker::PhantomData, mem::MaybeUninit, ops};
#[cfg(feature = "full-decoder")]
use core::{hash, mem, ptr};

/// Decodes raw instruction bytes into a machine-readable struct.
#[derive(Clone, Debug)]
Expand Down

0 comments on commit 4ecbe77

Please sign in to comment.