Skip to content

Commit

Permalink
Check if this caused the backwards compatibility error
Browse files Browse the repository at this point in the history
  • Loading branch information
davisp committed Jul 13, 2023
1 parent eb55444 commit 6f111f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tiledb/sm/enums/datatype.h
Original file line number Diff line number Diff line change
Expand Up @@ -331,11 +331,11 @@ inline bool datatype_is_string(Datatype type) {
/** Returns true if the input datatype is an integer type. */
inline bool datatype_is_integer(Datatype type) {
return (
type == Datatype::BLOB || type == Datatype::BOOL ||
type == Datatype::INT8 || type == Datatype::UINT8 ||
type == Datatype::INT16 || type == Datatype::UINT16 ||
type == Datatype::INT32 || type == Datatype::UINT32 ||
type == Datatype::INT64 || type == Datatype::UINT64 ||
type == Datatype::BOOL);
type == Datatype::INT64 || type == Datatype::UINT64);
}

/**
Expand Down

0 comments on commit 6f111f5

Please sign in to comment.