Skip to content

Commit

Permalink
fix(config): make struct public
Browse files Browse the repository at this point in the history
  • Loading branch information
yamafaktory committed Sep 1, 2024
1 parent 56c45e7 commit 3da1509
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hyperzig.zig
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ pub fn HyperZig(comptime H: type, comptime V: type) type {
};
}

/// Configuration for the HyperZig instance.
const HyperZigConfig = struct {
/// Configuration struct for the HyperZig instance.
pub const HyperZigConfig = struct {
/// The initial capacity of the hyperedges array hashmap.
hyperedgeCapacity: ?usize = null,
/// The initial capacity of the vertices array hashmap.
Expand Down

0 comments on commit 3da1509

Please sign in to comment.