From 7e566cfcc011bc2ee122b6af9390c89584300ade Mon Sep 17 00:00:00 2001 From: mmorozov Date: Tue, 13 Sep 2022 10:51:15 +0300 Subject: [PATCH] Fix clang format codestyle Change-Id: I5ce79ec5b179f0d1356228942f8daa1c3d07a6f1 Signed-off-by: mmorozov --- 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