From 7c732e594c1f623f9d33ad08dc0472bc73607d84 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Tue, 22 Nov 2022 21:09:12 +0100 Subject: [PATCH] Document that custom features must be namespaced --- src/wrapper/clap/features.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wrapper/clap/features.rs b/src/wrapper/clap/features.rs index 2c40af10..f88d2d30 100644 --- a/src/wrapper/clap/features.rs +++ b/src/wrapper/clap/features.rs @@ -41,7 +41,8 @@ pub enum ClapFeature { Stereo, Surround, Ambisonic, - /// A non-predefined feature. Hosts may display this among its plugin categories. + /// A non-predefined feature. Hosts may display this among its plugin categories. Custom + /// features _must_ be prefixed by a namespace in the format `namespace:feature_name`. Custom(&'static str), }