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

[BugFix] Fix compile error on ARM platform #158

Merged
merged 1 commit into from
May 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix compile error on ARM platform
Signed-off-by: acezen <[email protected]>
acezen committed May 16, 2023
commit 25b7e95318499d5bb862eb193ca950ce701f5de7
8 changes: 4 additions & 4 deletions cpp/include/gar/writer/arrow_chunk_writer.h
Original file line number Diff line number Diff line change
@@ -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
};

/**