More specific visibility for assert

This commit is contained in:
elvis
2025-08-15 17:43:22 +02:00
parent a4da8aec8d
commit 1face6efda
3 changed files with 16 additions and 16 deletions

View File

@ -3,7 +3,7 @@ fn main() {
use reactionsystems::rsprocess::presets;
match presets::run("testing/first.system".into()) {
Ok(_) => {},
Ok(()) => {},
Err(e) => {println!("{e}")}
}