aboutsummaryrefslogtreecommitdiff
path: root/ctru-rs/src/thread.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-03-04 01:57:27 -0800
committerFuwn <[email protected]>2022-03-04 01:57:27 -0800
commitbd47c8e6dd0b7b988c210ab752127c413c4aab85 (patch)
tree83f0051c6c9f4021c5a4edc8bd1beebfbba3de73 /ctru-rs/src/thread.rs
parentadd me to AUTHORS.md (diff)
downloadarchived-ctru-rs-main.tar.xz
archived-ctru-rs-main.zip
fix(ctru-rs): warningsHEADmain
Diffstat (limited to 'ctru-rs/src/thread.rs')
-rw-r--r--ctru-rs/src/thread.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctru-rs/src/thread.rs b/ctru-rs/src/thread.rs
index 481e559..8c49a1e 100644
--- a/ctru-rs/src/thread.rs
+++ b/ctru-rs/src/thread.rs
@@ -724,7 +724,7 @@ impl fmt::Debug for Thread {
/// ```
///
/// [`Result`]: ../../std/result/enum.Result.html
-pub type Result<T> = ::std::result::Result<T, Box<Any + Send + 'static>>;
+pub type Result<T> = ::std::result::Result<T, Box<dyn Any + Send + 'static>>;
// This packet is used to communicate the return value between the child thread
// and the parent thread. Memory is shared through the `Arc` within and there's