Merge branch 'main' of github.com:khonsulabs/gooey

This commit is contained in:
Jonathan Johnson 2023-11-28 10:15:10 -08:00
commit c0d714331b
No known key found for this signature in database
GPG key ID: A66D6A34D6620579

View file

@ -27,7 +27,7 @@ impl UnwindsafeCondvar {
pub const fn new() -> Self {
#[cfg(any(target_os = "ios", target_os = "macos"))]
{
Self(AssertUnwindSafe(Condvar::new()))
Self(std::panic::AssertUnwindSafe(Condvar::new()))
}
#[cfg(not(any(target_os = "ios", target_os = "macos")))]