File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ mod monomorphize;
13
13
// TODO: Deprecated re-export. Remove on a breaking release.
14
14
#[ deprecated(
15
15
since = "0.14.1" ,
16
- note = "Use `hugr::algorithms::call_graph ::RemoveDeadFuncsPass` instead."
16
+ note = "Use `hugr_passes ::RemoveDeadFuncsPass` instead."
17
17
) ]
18
18
#[ allow( deprecated) ]
19
19
pub use monomorphize:: remove_polyfuncs;
20
20
// TODO: Deprecated re-export. Remove on a breaking release.
21
21
#[ deprecated(
22
22
since = "0.14.1" ,
23
- note = "Use `hugr::algorithms ::MonomorphizePass` instead."
23
+ note = "Use `hugr_passes ::MonomorphizePass` instead."
24
24
) ]
25
25
#[ allow( deprecated) ]
26
26
pub use monomorphize:: monomorphize;
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ use thiserror::Error;
32
32
/// whenever the names of their parents are unique, but this is not guaranteed.
33
33
#[ deprecated(
34
34
since = "0.14.1" ,
35
- note = "Use `hugr::algorithms ::MonomorphizePass` instead."
35
+ note = "Use `hugr_passes ::MonomorphizePass` instead."
36
36
) ]
37
37
// TODO: Deprecated. Remove on a breaking release and rename private `monomorphize_ref` to `monomorphize`.
38
38
pub fn monomorphize ( mut h : Hugr ) -> Hugr {
@@ -59,7 +59,7 @@ fn monomorphize_ref(h: &mut impl HugrMut) {
59
59
/// Deprecated: use [crate::remove_dead_funcs] instead.
60
60
#[ deprecated(
61
61
since = "0.14.1" ,
62
- note = "Use hugr::algorithms::dead_funcs ::RemoveDeadFuncsPass instead"
62
+ note = "Use hugr_passes ::RemoveDeadFuncsPass instead"
63
63
) ]
64
64
pub fn remove_polyfuncs ( mut h : Hugr ) -> Hugr {
65
65
#[ allow( deprecated) ] // we are in a deprecated function, so remove both at same time
@@ -69,7 +69,7 @@ pub fn remove_polyfuncs(mut h: Hugr) -> Hugr {
69
69
70
70
#[ deprecated(
71
71
since = "0.14.1" ,
72
- note = "Use hugr::algorithms::dead_funcs ::RemoveDeadFuncsPass instead"
72
+ note = "Use hugr_passes ::RemoveDeadFuncsPass instead"
73
73
) ]
74
74
fn remove_polyfuncs_ref ( h : & mut impl HugrMut ) {
75
75
let mut pfs_to_delete = Vec :: new ( ) ;
You can’t perform that action at this time.
0 commit comments