mirror of
https://github.com/netbirdio/IronRDP.git
synced 2026-05-22 18:43:12 -07:00
fix(ironrdp-error): fix build with alloc feature (#514)
This commit is contained in:
@@ -48,7 +48,7 @@ impl<Kind> Error<Kind> {
|
||||
#[cfg(feature = "alloc")]
|
||||
{
|
||||
let mut this = self;
|
||||
this.source = Some(Box::new(source));
|
||||
this.source = Some(alloc::boxed::Box::new(source));
|
||||
this
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user