Skip to content

Commit 86d3880

Browse files
committed
ram: minor clang-format adjustments
Signed-off-by: braydenl9988 <[email protected]>
1 parent f8b94cc commit 86d3880

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/ram/include/ram/ram.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ class RamGen
8686

8787
odb::dbBTerm* makeBTerm(const std::string& name, odb::dbIoType io_type);
8888

89-
std::unique_ptr<Layout> generateTapColumn(int word_count,
90-
int tapcell_col);
89+
std::unique_ptr<Layout> generateTapColumn(int word_count, int tapcell_col);
9190

9291
std::unique_ptr<Cell> makeDecoder(const std::string& prefix,
9392
int num_word,

src/ram/src/layout.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ bool Grid::insertLayout(std::unique_ptr<Layout> layout, int index)
174174
{
175175
if (index == layouts_.size()) {
176176
layouts_.push_back(std::move(layout));
177-
} else if (index < layouts_.size()){
177+
} else if (index < layouts_.size()) {
178178
layouts_.insert(layouts_.begin() + index, std::move(layout));
179179
} else if (index > layouts_.size()) {
180180
return false;

0 commit comments

Comments
 (0)