Simplify default Result generics.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-07-08 12:08:13 +00:00
parent 8244d78cb2
commit ae707ab465
42 changed files with 95 additions and 115 deletions

View File

@@ -78,7 +78,7 @@ fn init_features() -> Result<Vec<String>> {
Ok(features)
}
fn append_features(features: &mut Vec<String>, manifest: &str) -> Result<()> {
fn append_features(features: &mut Vec<String>, manifest: &str) -> Result {
let manifest = Manifest::from_str(manifest)?;
features.extend(manifest.features.keys().cloned());