From 355b916f4020fd341ac45fcd2b5dd5d3e347b295 Mon Sep 17 00:00:00 2001 From: junwha <17183234+junwha@users.noreply.github.com> Date: Sun, 30 Mar 2025 09:43:07 +0000 Subject: [PATCH] apply code-format changes --- src/layer/x86/shufflechannel_x86.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/layer/x86/shufflechannel_x86.cpp b/src/layer/x86/shufflechannel_x86.cpp index ed84f943a..312aaf995 100644 --- a/src/layer/x86/shufflechannel_x86.cpp +++ b/src/layer/x86/shufflechannel_x86.cpp @@ -622,12 +622,12 @@ int ShuffleChannel_x86::forward(const Mat& bottom_blob, Mat& top_blob, const Opt } { - outptr[0] = ptr0[0]; - outptr[1] = ptr1[0]; - outptr[2] = ptr0[1]; - outptr[3] = ptr1[1]; - ptr0 += 2; - ptr1 += 2; + outptr[0] = ptr0[0]; + outptr[1] = ptr1[0]; + outptr[2] = ptr0[1]; + outptr[3] = ptr1[1]; + ptr0 += 2; + ptr1 += 2; outptr += 4; } }