Skip to content

Commit

Permalink
Resolved errors on 32bit systems
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianSchmid committed Jun 25, 2024
1 parent 6fbe755 commit 48aeaec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ft/dlt_ft_buffer.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#[cfg(feature = "std")]
use crate::ft::*;
#[cfg(all(feature = "std", target_pointer_width = "64"))]
use crate::{error::FtReassembleError, ft::*};
use crate::error::FtReassembleError;
#[cfg(feature = "std")]
use std::string::String;
#[cfg(feature = "std")]
Expand Down

0 comments on commit 48aeaec

Please sign in to comment.