aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/flowmap.cc
diff options
context:
space:
mode:
authorLarry Doolittle <ldoolitt@recycle.lbl.gov>2019-02-24 22:08:52 -0800
committerClifford Wolf <clifford@clifford.at>2019-02-26 09:39:46 -0800
commit61fc411c5d7237e420ee6eb9f6eb093e70d1007d (patch)
tree52cab3b364be7ac5d98ef467a545ad651c02570b /passes/techmap/flowmap.cc
parentc258b99040c8414952a3aceae874dc47563540dc (diff)
downloadyosys-61fc411c5d7237e420ee6eb9f6eb093e70d1007d.tar.gz
yosys-61fc411c5d7237e420ee6eb9f6eb093e70d1007d.tar.bz2
yosys-61fc411c5d7237e420ee6eb9f6eb093e70d1007d.zip
Clean up some whitepsace outliers
Diffstat (limited to 'passes/techmap/flowmap.cc')
-rw-r--r--passes/techmap/flowmap.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/passes/techmap/flowmap.cc b/passes/techmap/flowmap.cc
index ddbd7bf5d..0b7931e48 100644
--- a/passes/techmap/flowmap.cc
+++ b/passes/techmap/flowmap.cc
@@ -132,9 +132,9 @@ static void dump_dot_graph(string filename,
pool<RTLIL::SigBit> nodes, dict<RTLIL::SigBit, pool<RTLIL::SigBit>> edges,
pool<RTLIL::SigBit> inputs, pool<RTLIL::SigBit> outputs,
std::function<GraphStyle(RTLIL::SigBit)> node_style =
- [](RTLIL::SigBit) { return GraphStyle{}; },
+ [](RTLIL::SigBit) { return GraphStyle{}; },
std::function<GraphStyle(RTLIL::SigBit, RTLIL::SigBit)> edge_style =
- [](RTLIL::SigBit, RTLIL::SigBit) { return GraphStyle{}; },
+ [](RTLIL::SigBit, RTLIL::SigBit) { return GraphStyle{}; },
string name = "")
{
FILE *f = fopen(filename.c_str(), "w");