Skip to content

Commit

Permalink
[BugFix] Fix compile error in aarch64 (backport #52944) (#52959)
Browse files Browse the repository at this point in the history
Co-authored-by: stdpain <[email protected]>
  • Loading branch information
mergify[bot] and stdpain authored Nov 16, 2024
1 parent 3563c78 commit 8f01cfa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 0 additions & 4 deletions be/src/column/column_hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@
#include "util/hash.h"
#include "util/slice.h"

#if defined(__aarch64__)
#include "arm_acle.h"
#endif

namespace starrocks {

#if defined(__SSE2__) && !defined(ADDRESS_SANITIZER)
Expand Down
3 changes: 3 additions & 0 deletions be/src/util/hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
#include "util/hash_util.hpp"
#include "util/slice.h"
#include "util/unaligned_access.h"
#if defined(__aarch64__)
#include "arm_acle.h"
#endif

namespace starrocks {

Expand Down

0 comments on commit 8f01cfa

Please sign in to comment.