From 4f606f3d5195ec988dc6a7b62cf6acebcb49aa1b Mon Sep 17 00:00:00 2001 From: Simon Brand Date: Wed, 22 May 2019 10:41:00 +0100 Subject: [PATCH] Correct GCC vector workaround for trivially-copyable types Fixes #58 --- tl/expected.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tl/expected.hpp b/tl/expected.hpp index 796fd85..e670e48 100644 --- a/tl/expected.hpp +++ b/tl/expected.hpp @@ -84,7 +84,7 @@ namespace tl { #ifdef _GLIBCXX_VECTOR template struct is_trivially_copy_constructible> - : std::is_trivially_copy_constructible{}; + : std::false_type{}; #endif } }