Skip to content

Commit c115a4a

Browse files
committed
make format
1 parent 9338a57 commit c115a4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/libvtrutil/src/tl_optional.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ struct optional_copy_assign_base<T, false> : optional_move_base<T> {
516516
// to make do with a non-trivial move assignment operator even if T is trivially
517517
// move assignable
518518
#ifndef TL_OPTIONAL_GCC49
519-
template<class T, bool = std::is_trivially_destructible<T>::value&& std::is_trivially_move_constructible<T>::value && std::is_trivially_move_assignable<T>::value>
519+
template<class T, bool = std::is_trivially_destructible<T>::value&& std::is_trivially_move_constructible<T>::value&& std::is_trivially_move_assignable<T>::value>
520520
struct optional_move_assign_base : optional_copy_assign_base<T> {
521521
using optional_copy_assign_base<T>::optional_copy_assign_base;
522522
};

0 commit comments

Comments
 (0)