From 4b52cabf2b2c0020e22a4a8f23e205c3fe9b123e Mon Sep 17 00:00:00 2001 From: anakinxc <103552181+anakinxc@users.noreply.github.com> Date: Fri, 1 Dec 2023 08:36:47 +0000 Subject: [PATCH] indent --- libspu/kernel/hal/permute.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libspu/kernel/hal/permute.cc b/libspu/kernel/hal/permute.cc index 88804827..22eef023 100644 --- a/libspu/kernel/hal/permute.cc +++ b/libspu/kernel/hal/permute.cc @@ -597,10 +597,10 @@ std::vector simple_sort1d(SPUContext *ctx, }; Visibility vis = - std::all_of(inputs.begin(), inputs.begin() + num_keys, - [](const spu::Value &v) { return v.isPublic(); }) - ? VIS_PUBLIC - : VIS_SECRET; + std::all_of(inputs.begin(), inputs.begin() + num_keys, + [](const spu::Value &v) { return v.isPublic(); }) + ? VIS_PUBLIC + : VIS_SECRET; auto ret = sort1d(ctx, inputs, comp_fn, vis, false); return ret; }