Skip to content

Commit

Permalink
chore: remove restrictions for aarch64 architectures (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
SF-Zhou authored Mar 2, 2025
1 parent 28c3b8b commit fc346b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/utils/Status.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class [[nodiscard]] Status {

private:
static_assert(StatusCode::kOK == 0, "StatusCode::kOK must be 0!");
static_assert(__x86_64__, "The platform must be 64bit!");
static_assert(__x86_64__ || __aarch64__, "The platform must be 64bit!");
static_assert(sizeof(status_code_t) == 2, "The width of status_code_t must be 16b");

static constexpr auto kPtrBits = 48u;
Expand Down

0 comments on commit fc346b0

Please sign in to comment.