From 25b7e95318499d5bb862eb193ca950ce701f5de7 Mon Sep 17 00:00:00 2001 From: acezen Date: Tue, 16 May 2023 09:47:31 +0800 Subject: [PATCH] Fix compile error on ARM platform 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 }; /**