Skip to content

Commit

Permalink
defin: clang-format
Browse files Browse the repository at this point in the history
Signed-off-by: Felipe Garay <fgaray@google.com>
  • Loading branch information
fgaray committed Jul 26, 2024
1 parent fefd6cd commit 8c219ec
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/odb/src/defin/definReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1562,7 +1562,11 @@ int definReader::unitsCallback(defrCallbackType_e, double d, defiUserData data)

// Truncation error
if (d > reader->_tech->getDbUnitsPerMicron()) {
UNSUPPORTED(fmt::format("The DEF UNITS DISTANCE MICRONS convert factor ({}) is greater than the database units per micron ({}) value.", d, reader->_tech->getDbUnitsPerMicron()));
UNSUPPORTED(
fmt::format("The DEF UNITS DISTANCE MICRONS convert factor ({}) is "
"greater than the database units per micron ({}) value.",
d,
reader->_tech->getDbUnitsPerMicron()));
}

reader->units(d);
Expand Down

0 comments on commit 8c219ec

Please sign in to comment.