mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-08-04 15:18:17 +00:00
fix(ironrdp-error): fix build with alloc
feature (#514)
This commit is contained in:
parent
20e60bc415
commit
5406c286f4
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue