From 30b979c0c4a231d3c55a465ccba2ecf751058b62 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Wed, 12 Jun 2024 14:01:07 +0200 Subject: remove some printfs --- Circuit.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Circuit.cpp b/Circuit.cpp index 7da9384..102096c 100644 --- a/Circuit.cpp +++ b/Circuit.cpp @@ -16,11 +16,10 @@ void Circuit::new_node(string label, string type) { nodes[label] = node; - printf("[%s] (%s)\n", label.c_str(), type.c_str()); + // printf("[%s] (%s)\n", label.c_str(), type.c_str()); } void Circuit::new_net(string src, vector dests) { - printf("%s\n", src.c_str()); Net * net = new Net(); nets.push_back(net); -- cgit v1.2.3