We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b370a77 commit 2b43122Copy full SHA for 2b43122
components/core/src/clp_s/ColumnReader.cpp
@@ -223,7 +223,8 @@ std::string FormattedFloatColumnReader::scientific_to_decimal(
223
}
224
225
// 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;
+ int const decimal_pos
227
+ = std::string::npos == dot_pos ? exponent + 1 : static_cast<int>(dot_pos) + exponent;
228
229
std::string result{""};
230
if (isNegative) {
0 commit comments