We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97c286e commit 33ee071Copy full SHA for 33ee071
src/recursion_guard.rs
@@ -20,7 +20,7 @@ pub struct RecursionGuard {
20
}
21
22
// A hard limit to avoid stack overflows when rampant recursion occurs
23
-const RECURSION_GUARD_LIMIT: u16 = if cfg!(target_family = "wasm") { 50 } else { 255 };
+const RECURSION_GUARD_LIMIT: u16 = 255;
24
25
impl RecursionGuard {
26
// insert a new id into the set, return whether the set already had the id in it
0 commit comments