Skip to content

Commit d2b35ac

Browse files
authored
Merge pull request #97 from toast-uz/master
Fix compatibility with cargo-equip
2 parents 16875d3 + 8e18784 commit d2b35ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/convolution.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ macro_rules! modulus {
88
const VALUE: u32 = $name as _;
99
const HINT_VALUE_IS_PRIME: bool = true;
1010

11-
fn butterfly_cache() -> &'static ::std::thread::LocalKey<::std::cell::RefCell<::std::option::Option<crate::modint::ButterflyCache<Self>>>> {
11+
fn butterfly_cache() -> &'static ::std::thread::LocalKey<::std::cell::RefCell<::std::option::Option<$crate::modint::ButterflyCache<Self>>>> {
1212
thread_local! {
13-
static BUTTERFLY_CACHE: ::std::cell::RefCell<::std::option::Option<crate::modint::ButterflyCache<$name>>> = ::std::default::Default::default();
13+
static BUTTERFLY_CACHE: ::std::cell::RefCell<::std::option::Option<$crate::modint::ButterflyCache<$name>>> = ::std::default::Default::default();
1414
}
1515
&BUTTERFLY_CACHE
1616
}

0 commit comments

Comments
 (0)