Skip to content

Commit

Permalink
Formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
lbushi25 committed Nov 5, 2024
1 parent 5c0c4b3 commit df3902f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sycl/test/extensions/WorkGroupMemory/api_test.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// RUN: %clangxx -fsycl -fsyntax-only %s
#include <cassert>
#include <sycl/sycl.hpp>
#include <type_traits>
Expand Down Expand Up @@ -82,7 +83,7 @@ void test_helper(syclexp::work_group_memory<DataT> mem) {
}

template <typename Type, typename... rest> void test() {
syclexp::work_group_memory<Type> mem;
syclexp::work_group_memory<Type> mem{syclexp::indeterminate};
test_constness<Type>();
test_helper(mem);
if constexpr (sizeof...(rest))
Expand Down

0 comments on commit df3902f

Please sign in to comment.