Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorostsa committed Jul 31, 2023
1 parent b01d8d0 commit 6bb0b33
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,14 @@ namespace hpx {
};

template <typename T, int size>
struct is_trivially_relocatable<T volatile[size]> : is_trivially_relocatable<T>
struct is_trivially_relocatable<T volatile[size]>
: is_trivially_relocatable<T>
{
};

template <typename T, int size>
struct is_trivially_relocatable<T const volatile[size]> : is_trivially_relocatable<T>
struct is_trivially_relocatable<T const volatile[size]>
: is_trivially_relocatable<T>
{
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ static_assert(
hpx::is_trivially_relocatable_v<explicitly_trivially_relocatable_1 (
&&)[10]>);
static_assert(hpx::is_trivially_relocatable_v<
explicitly_trivially_relocatable_1 const volatile &>);
explicitly_trivially_relocatable_1 const volatile&>);

// Trivial relocatability is not inherited
struct derived_from_explicitly_trivially_relocatable
Expand Down

0 comments on commit 6bb0b33

Please sign in to comment.