Skip to content

Commit f747ee9

Browse files
authored
chore: Change JSON::compute_keyhash_and_sort_json_entries to have pub(crate) visibility (#94)
1 parent 44c7dc5 commit f747ee9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/keymap.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ impl KeyIndexData {
5050
}
5151

5252
impl<let NumBytes: u32, let NumPackedFields: u32, let MaxNumTokens: u32, let MaxNumValues: u32, let MaxKeyFields: u32> JSON<NumBytes, NumPackedFields, MaxNumTokens, MaxNumValues, MaxKeyFields> {
53-
fn compute_keyhash_and_sort_json_entries(&mut self) {
53+
pub(crate) fn compute_keyhash_and_sort_json_entries(&mut self) {
5454
let hasher: FieldHasher<MaxKeyFields> = FieldHasher {};
5555

5656
let mut hashlist: [Field; MaxNumValues] = [0; MaxNumValues];

0 commit comments

Comments
 (0)