[lib] code format

This commit is contained in:
tangxifan 2022-10-21 13:03:03 -07:00
parent 0999c9444b
commit 2d42826919
1 changed files with 2 additions and 1 deletions

View File

@ -60,7 +60,8 @@ bool PcfData::validate() const {
net2pin[curr_net] = curr_pin;
}
/* We should not have duplicated pins in assignment: 1 pin -> 2 nets */
/* Caution: must use constant pointer here, otherwise you may see duplicated key on BasicPort with different content! */
/* Caution: must use constant pointer here, otherwise you may see duplicated
* key on BasicPort with different content! */
std::map<const BasicPort*, std::string> pin2net;
for (const PcfIoConstraintId& io_id : io_constraints()) {
std::string curr_net = io_constraint_nets_[io_id];