From 8ebf14c12f06a1d71a4b17cee9b391143ccb498b Mon Sep 17 00:00:00 2001 From: Weibin Zeng Date: Tue, 16 May 2023 14:09:35 +0800 Subject: [PATCH] Fix compile error on ARM platform (#158) Signed-off-by: acezen --- cpp/include/gar/writer/arrow_chunk_writer.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cpp/include/gar/writer/arrow_chunk_writer.h b/cpp/include/gar/writer/arrow_chunk_writer.h index cfc883e31..a438c4b3e 100644 --- a/cpp/include/gar/writer/arrow_chunk_writer.h +++ b/cpp/include/gar/writer/arrow_chunk_writer.h @@ -39,10 +39,10 @@ namespace GAR_NAMESPACE_INTERNAL { * @brief The level for validating writing operations. */ enum class ValidateLevel : char { - default_validate = -1, - no_validate = 0, - weak_validate = 1, - strong_validate = 2 + default_validate = 0, + no_validate = 1, + weak_validate = 2, + strong_validate = 3 }; /**