Skip to content

Commit

Permalink
use Vec for owned array
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiwi committed May 29, 2024
1 parent 3e0a148 commit d1bfe11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/value/owned.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl BitVecValue {
pub struct DenseArrayValue {
pub(crate) index_width: WidthInt,
pub(crate) data_width: WidthInt,
pub(crate) words: ValueVec,
pub(crate) words: Vec<Word>,
}

impl ArrayOps for DenseArrayValue {
Expand Down

0 comments on commit d1bfe11

Please sign in to comment.