Skip to content

Commit

Permalink
Fix compile error on ARM platform (#158)
Browse files Browse the repository at this point in the history
Signed-off-by: acezen <[email protected]>
  • Loading branch information
acezen authored May 16, 2023
1 parent 09650ed commit 8ebf14c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cpp/include/gar/writer/arrow_chunk_writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
};

/**
Expand Down

0 comments on commit 8ebf14c

Please sign in to comment.