Correct GCC vector workaround for trivially-copyable types

Fixes #58
This commit is contained in:
Simon Brand
2019-05-22 10:41:00 +01:00
committed by GitHub
parent 1eba0ac799
commit 4f606f3d51

View File

@@ -84,7 +84,7 @@ namespace tl {
#ifdef _GLIBCXX_VECTOR
template<class T, class A>
struct is_trivially_copy_constructible<std::vector<T,A>>
: std::is_trivially_copy_constructible<T>{};
: std::false_type{};
#endif
}
}