From 0a8e9b0fbdf1c8bf13937b382d8783334bce97dc Mon Sep 17 00:00:00 2001 From: David Shah Date: Mon, 18 Nov 2019 15:07:55 +0000 Subject: clangformat Signed-off-by: David Shah --- generic/cells.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'generic/cells.cc') diff --git a/generic/cells.cc b/generic/cells.cc index 2b555f62..c4421f90 100644 --- a/generic/cells.cc +++ b/generic/cells.cc @@ -96,7 +96,7 @@ void dff_to_lc(const Context *ctx, CellInfo *dff, CellInfo *lc, bool pass_thru_l const int init_size = 1 << lc->params[ctx->id("K")].as_int64(); std::string init; init.reserve(init_size); - for(int i = 0; i < init_size; i+=2) + for (int i = 0; i < init_size; i += 2) init.append("10"); lc->params[ctx->id("INIT")] = Property::from_string(init); -- cgit v1.2.3