From b9ab29d15af18976041c09eb6be81391bb8c8baf Mon Sep 17 00:00:00 2001 From: Andrei Elovikov Date: Tue, 9 Jan 2024 10:09:56 -0800 Subject: [PATCH] clang-format --- sycl/source/builtins/host_helper_macros.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sycl/source/builtins/host_helper_macros.hpp b/sycl/source/builtins/host_helper_macros.hpp index 00195bc2fbdad..484b0bc95fb8b 100644 --- a/sycl/source/builtins/host_helper_macros.hpp +++ b/sycl/source/builtins/host_helper_macros.hpp @@ -38,14 +38,14 @@ // we export. As such, verify the return type consistency using static_assert. #define EXPORT_SCALAR_NS(NUM_ARGS, NAME, NS, TYPE) \ __SYCL_EXPORT auto __##NAME##_impl(NUM_ARGS##_TYPE_ARG(TYPE)) \ - ->decltype(NAME##_host_impl(NUM_ARGS##_ARG)) { \ + -> decltype(NAME##_host_impl(NUM_ARGS##_ARG)) { \ static_assert(std::is_same_v); \ return NAME##_host_impl(NUM_ARGS##_ARG); \ } #define EXPORT_VEC_NS(NUM_ARGS, NAME, NS, TYPE, VL) \ __SYCL_EXPORT auto __##NAME##_impl(NUM_ARGS##_VEC_TYPE_ARG(TYPE, VL)) \ - ->decltype(NAME##_host_impl(NUM_ARGS##_ARG)) { \ + -> decltype(NAME##_host_impl(NUM_ARGS##_ARG)) { \ static_assert(std::is_same_v); \ return NAME##_host_impl(NUM_ARGS##_ARG); \