Commit 53c687d
committed
Fix stack overflow in descend_code_typed
Fixes a typo introduced in ac0a428.
diff --git a/src/Cthulhu.jl b/src/Cthulhu.jl
index 975615f..542bb59 100644
--- a/src/Cthulhu.jl
+++ b/src/Cthulhu.jl
@@ -143,7 +143,7 @@ julia> descend_code_typed() do
```
"""
function descend_code_typed(@nospecialize(args...); kwargs...)
- CTHULHU_MODULE[].descend_code_typed(args...; kwargs...)
+ CTHULHU_MODULE[].descend_code_typed_impl(args...; kwargs...)
end
"""1 parent e12c683 commit 53c687d
2 files changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
| 4 | + | |
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
143 | 143 | | |
144 | 144 | | |
145 | 145 | | |
146 | | - | |
| 146 | + | |
147 | 147 | | |
148 | 148 | | |
149 | 149 | | |
| |||
0 commit comments