Commit f1cb99a
Fix Julia 1.12 deprecation warning for Pipe constructor
This commit addresses issue #412 where Julia 1.12 triggers a warning
during precompilation about the Pipe constructor being extended without
explicit qualification.
The warning occurred because `@deprecate Pipe Tube` was ambiguous -
Julia couldn't determine if we were creating a new function or extending
`Base.Pipe`.
Fix: Added explicit `function Pipe end` declaration before the
deprecation to clearly indicate we're creating a new generic function,
not extending Base.Pipe.
Fixes #412
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>1 parent 09a3f39 commit f1cb99a
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
202 | 202 | | |
203 | 203 | | |
204 | 204 | | |
| 205 | + | |
205 | 206 | | |
206 | 207 | | |
207 | 208 | | |
| |||
0 commit comments