From 1933471839845e097acf97fdbed4e8c87a841e4f Mon Sep 17 00:00:00 2001 From: Mikhail Kaskov Date: Tue, 13 Sep 2022 09:27:17 +0300 Subject: [PATCH] Fixed clang-format Signed-off-by: Mikhail Kaskov --- runtime/intrinsics-inl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/intrinsics-inl.h b/runtime/intrinsics-inl.h index 240ef3494..26bdd96a6 100644 --- a/runtime/intrinsics-inl.h +++ b/runtime/intrinsics-inl.h @@ -1085,8 +1085,8 @@ INLINE_ECMA_INTRINSICS uint64_t StObjByIndex(JSThread *thread, uint32_t idx, uin return SlowRuntimeStub::StObjByIndex(thread, obj, idx, val).GetRawData(); } -ARK_INLINE inline static bool GetLeftRightInt(JSThread *thread, uint64_t lhs, uint64_t rhs, bool isULeft, - bool isURight, int32_t &left, int32_t &right) +ARK_INLINE inline static bool GetLeftRightInt(JSThread *thread, uint64_t lhs, uint64_t rhs, bool isULeft, bool isURight, + int32_t &left, int32_t &right) { auto jleft = JSTaggedValue(lhs); auto jright = JSTaggedValue(rhs); -- Gitee