diff options
author | Aria Shrimpton <me@aria.rip> | 2024-03-01 13:40:27 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-03-01 13:40:27 +0000 |
commit | 05bdf04b1f809cd5f4187c44d27124c3806cfbe2 (patch) | |
tree | b487021fdca86c665d581041760dfc939c7db307 /src/crates | |
parent | 5b2a47e962cbd0d98735f1fa37c5c23a6feca891 (diff) |
fix codegen for adaptive containers
Diffstat (limited to 'src/crates')
-rw-r--r-- | src/crates/primrose/src/codegen.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crates/primrose/src/codegen.rs b/src/crates/primrose/src/codegen.rs index 7dd2b6c..72c3b41 100644 --- a/src/crates/primrose/src/codegen.rs +++ b/src/crates/primrose/src/codegen.rs @@ -121,7 +121,7 @@ fn _{tag_id}<{bounds}>() -> {tag_id}<{vars}> {{ r#" #[allow(non_snake_case)] fn _{tag_id}<{bounds}>() -> {tag_id}<{vars}> {{ - ::primrose_library::AdaptiveContainer::<{threshold}, {before}<{vars}>, {after}<{vars}>::default() + ::primrose_library::AdaptiveContainer::<{threshold}, {before}<{vars}>, {after}<{vars}>>::default() }} "# ), |