Skip to content

Commit 2b43122

Browse files
committed
Fix formatting.
1 parent b370a77 commit 2b43122

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

components/core/src/clp_s/ColumnReader.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,8 @@ std::string FormattedFloatColumnReader::scientific_to_decimal(
223223
}
224224

225225
// Adjust position of decimal point based on exponent
226-
int const decimal_pos = std::string::npos == dot_pos ? exponent + 1 : static_cast<int>(dot_pos) + exponent;
226+
int const decimal_pos
227+
= std::string::npos == dot_pos ? exponent + 1 : static_cast<int>(dot_pos) + exponent;
227228

228229
std::string result{""};
229230
if (isNegative) {

0 commit comments

Comments
 (0)