Skip to content

Commit 785465d

Browse files
committed
gpl: remove unecessary bracktes
Signed-off-by: Augusto Berndt <augusto.berndt@precisioninno.com>
1 parent ac27ea0 commit 785465d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/gpl/src/nesterovBase.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3167,15 +3167,14 @@ std::pair<odb::dbInst*, size_t> NesterovBaseCommon::destroyCbkGCell(
31673167
307,
31683168
"db_inst not found in db_inst_to_NBC_index_map_ when trying to "
31693169
"destroy GCell on NBC");
3170-
return {};
31713170
}
31723171

31733172
size_t index_remove = it->second;
31743173
size_t last_index = gCellStor_.size() - 1;
31753174

31763175
db_inst_to_nbc_index_map_.erase(it);
31773176

3178-
std::pair<odb::dbInst*, size_t> replacement{};
3177+
std::pair<odb::dbInst*, size_t> replacement;
31793178

31803179
if (index_remove != last_index) {
31813180
std::swap(gCellStor_[index_remove], gCellStor_[last_index]);

0 commit comments

Comments
 (0)