From fac1ab5951692cb95cf0bcd2d582af5ba92e9dbd Mon Sep 17 00:00:00 2001 From: oligami-0424 Date: Thu, 23 Nov 2023 15:54:47 +0900 Subject: [PATCH] patch --- examples/iphone/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/iphone/src/main.rs b/examples/iphone/src/main.rs index fc5f5e3..88639a0 100644 --- a/examples/iphone/src/main.rs +++ b/examples/iphone/src/main.rs @@ -40,7 +40,7 @@ impl ViewDelegate for RootView { fn did_load(&mut self, _view: View) { LayoutConstraint::activate(&[]); - thread::spawn(|| { + std::thread::spawn(|| { println!("Hello from a thread!"); }); }