Skip to content

Commit 7b06637

Browse files
authored
Update type_traits.h
1 parent b082519 commit 7b06637

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/include/opentelemetry/nostd/type_traits.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ struct is_trivially_move_constructible
154154
template <typename T>
155155
struct is_trivially_copy_assignable
156156
{
157-
static constexpr bool value = std::is_copy_assignable<T>::value && && __is_trivially_assignable(T&, const T&);
157+
static constexpr bool value = std::is_copy_assignable<T>::value && __is_trivially_assignable(T&, const T&);
158158
};
159159

160160
template <typename T>

0 commit comments

Comments
 (0)