Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-36433: [C++] Update fast_float version to 3.10.1 #36434

Merged
merged 18 commits into from
Jul 19, 2023
Merged
4 changes: 4 additions & 0 deletions cpp/src/arrow/util/value_parsing.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#ifndef FASTFLOAT_ALLOWS_LEADING_PLUS
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need this ifndef? What situation are you thinking? I think that this is needless...

#define FASTFLOAT_ALLOWS_LEADING_PLUS 1
xxlaykxx marked this conversation as resolved.
Show resolved Hide resolved

#include "arrow/util/value_parsing.h"

Expand Down Expand Up @@ -112,3 +114,5 @@ std::shared_ptr<TimestampParser> TimestampParser::MakeISO8601() {
}

} // namespace arrow

#endif
Loading