From 8c219ece9dcb5e7375d85fcd9a9a78fcc1d91af7 Mon Sep 17 00:00:00 2001 From: Felipe Garay Date: Fri, 26 Jul 2024 14:49:51 -0700 Subject: [PATCH] defin: clang-format Signed-off-by: Felipe Garay --- src/odb/src/defin/definReader.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/odb/src/defin/definReader.cpp b/src/odb/src/defin/definReader.cpp index 9cd815504ea..4941b98c0d3 100644 --- a/src/odb/src/defin/definReader.cpp +++ b/src/odb/src/defin/definReader.cpp @@ -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);