From 8027bcf05623aeed004c5a591249c2c9dfddbb7c Mon Sep 17 00:00:00 2001 From: Srinath Setty Date: Thu, 14 Oct 2021 16:53:55 -0700 Subject: [PATCH] cargo fmt --- src/bellperson/shape_cs.rs | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/bellperson/shape_cs.rs b/src/bellperson/shape_cs.rs index 8b5dfe9..b4a5fbc 100644 --- a/src/bellperson/shape_cs.rs +++ b/src/bellperson/shape_cs.rs @@ -213,7 +213,11 @@ where /// TODO: document fn set_named_obj(&mut self, path: String, to: NamedObject) { - assert!(!self.named_objects.contains_key(&path), "tried to create object at existing path: {}", path); + assert!( + !self.named_objects.contains_key(&path), + "tried to create object at existing path: {}", + path + ); self.named_objects.insert(path, to); } @@ -306,7 +310,10 @@ where } fn compute_path(ns: &[String], this: &str) -> String { - assert!(!this.chars().any(|a| a == '/'), "'/' is not allowed in names"); + assert!( + !this.chars().any(|a| a == '/'), + "'/' is not allowed in names" + ); let mut name = String::new();