1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2024-11-21 05:02:45 +00:00

Fix util::atom failing to build in release mode

This commit is contained in:
Alula 2024-08-28 22:25:46 +02:00
parent b2b8406192
commit 1b55f85575
No known key found for this signature in database
GPG key ID: 3E00485503A1D8BA

View file

@ -143,8 +143,10 @@ impl Debug for AtomStore {
dbg.entry(&i, &AtomPrintList(atom));
}
}
dbg.finish()
dbg.finish()?;
}
Ok(())
}
}