Skip to content

Commit 06300bc

Browse files
committed
make clap custom features null by default
1 parent 0536c0f commit 06300bc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/clap/root.zig

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ pub const Feature = @import("features.zig").Feature;
99

1010
pub const Meta = struct {
1111
id: [:0]const u8,
12-
// TODO: custom namespaced features
1312
features: []const Feature,
1413
/// Non-standard features should be formatted as `$namespace:$feature`
15-
extra_features: ?[]const [:0]const u8,
14+
extra_features: ?[]const [:0]const u8 = null,
1615

1716
/// This field allows you to extend zigplug's CLAP implementation with extra extensions or override already
1817
/// supported ones.

0 commit comments

Comments
 (0)