Skip to content

Commit

Permalink
Removed redundant ';'
Browse files Browse the repository at this point in the history
  • Loading branch information
jwellbelove committed Jul 6, 2023
1 parent 309eebe commit 4c4c597
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/etl/generators/type_traits_generator.h
Original file line number Diff line number Diff line change
Expand Up @@ -1994,7 +1994,7 @@ typedef integral_constant<bool, true> true_type;

template <class T, class... Args>
struct is_constructible_<void_t<decltype(T(etl::declval<Args>()...))>, T, Args...> : etl::true_type {};
};
}

//*********************************************
// is_constructible
Expand Down
2 changes: 1 addition & 1 deletion include/etl/type_traits.h
Original file line number Diff line number Diff line change
Expand Up @@ -1987,7 +1987,7 @@ typedef integral_constant<bool, true> true_type;

template <class T, class... Args>
struct is_constructible_<void_t<decltype(T(etl::declval<Args>()...))>, T, Args...> : etl::true_type {};
};
}

//*********************************************
// is_constructible
Expand Down

0 comments on commit 4c4c597

Please sign in to comment.