Skip to content

Commit

Permalink
[BugFix] Fix compile error in aarch64 (#52944)
Browse files Browse the repository at this point in the history
Signed-off-by: stdpain <[email protected]>
  • Loading branch information
stdpain authored Nov 16, 2024
1 parent 7cff211 commit 79fa702
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 @@ -35,10 +35,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 79fa702

Please sign in to comment.